Skip to content
This repository was archived by the owner on Apr 30, 2022. It is now read-only.

Commit cd98f18

Browse files
authored
unlock the version of requests (#99)
1 parent 233bb63 commit cd98f18

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.3.0 - 2017-12-20
2+
3+
* Unlock the version of requests to allow use with other modern packages
4+
15
### 3.2.1 - 2017-10-23
26

37
* Provide a more actionable warning when asking for data over 1M rows

quandl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.2.1'
1+
VERSION = '3.3.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
install_requires = [
1919
'pandas >= 0.14',
2020
'numpy >= 1.8',
21-
'requests >= 2.7.0, < 2.18', # Version 2.18 appears to break pulling data.
21+
'requests >= 2.7.0',
2222
'inflection >= 0.3.1',
2323
'python-dateutil',
2424
'six',

test/test_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ def test_build_request(self, mock):
6767
'accept': ('application/json, '
6868
'application/vnd.quandl+json;version=2015-04-09'),
6969
'request-source': 'python',
70-
'request-source-version': '3.2.1'},
70+
'request-source-version': '3.3.0'},
7171
params={'per_page': 10, 'page': 2})
7272
self.assertEqual(mock.call_args, expected)

0 commit comments

Comments
 (0)