Skip to content

Commit

Permalink
Fix for breaking API changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Greenfeld committed Aug 10, 2015
1 parent dc1b063 commit 8dcede0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Versioning
Because this client interacts with Eventbrite's third API (a.k.a. APIv3), we are tying our release numbers against it in a modified-semantic system:

* 3.x.x where '3' matches the API version. This will not change until Eventbrite releases a new API version.
* * x.0.x where '0' is increased any time there is a significant change to the API that possibly breaks backwards compatibility
* x.0.x where '0' is increased any time there is a significant change to the API that possibly breaks backwards compatibility
* x.x.1 where '1' is increased on any release that does not break backwards comptability (small, new features, enhancements, bugfixes)

.. _requests: https://pypi.python.org/pypi/requests
Expand Down
5 changes: 1 addition & 4 deletions tests/integration/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ def _get_ticket_data(self):
'ticket_class.name': 'client_test_ticket_{0}'.format(datetime.now()),
'ticket_class.description': 'Python API Client testing',
'ticket_class.quantity_total': 100,
'ticket_class.cost': {
"currency": 'USD',
'value': 200,
}
'ticket_class.cost': 'USD,4500'
}

def _get_event_data(self, event_name='client_test_{0}'.format(datetime.now())):
Expand Down

0 comments on commit 8dcede0

Please sign in to comment.