Skip to content

Commit

Permalink
unlock the version of requests (quandl#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Scott-Rowe authored Dec 20, 2017
1 parent 233bb63 commit cd98f18
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.3.0 - 2017-12-20

* Unlock the version of requests to allow use with other modern packages

### 3.2.1 - 2017-10-23

* Provide a more actionable warning when asking for data over 1M rows
Expand Down
2 changes: 1 addition & 1 deletion quandl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.2.1'
VERSION = '3.3.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
install_requires = [
'pandas >= 0.14',
'numpy >= 1.8',
'requests >= 2.7.0, < 2.18', # Version 2.18 appears to break pulling data.
'requests >= 2.7.0',
'inflection >= 0.3.1',
'python-dateutil',
'six',
Expand Down
2 changes: 1 addition & 1 deletion test/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ def test_build_request(self, mock):
'accept': ('application/json, '
'application/vnd.quandl+json;version=2015-04-09'),
'request-source': 'python',
'request-source-version': '3.2.1'},
'request-source-version': '3.3.0'},
params={'per_page': 10, 'page': 2})
self.assertEqual(mock.call_args, expected)

0 comments on commit cd98f18

Please sign in to comment.