Skip to content

Commit 42b0c20

Browse files
authored
Restrict version of UrlLib3 < 2 (#57)
1 parent f88b4da commit 42b0c20

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ pprint(response)
9292
## Requirements
9393

9494
- six >= 1.10
95-
- urllib3 >= 1.15.1
95+
- urllib3 >= 1.21.1, <2.0
9696

9797
## Licensing
9898

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
certifi >= 2017.4.17
22
python-dateutil >= 2.1
33
six >= 1.10
4-
urllib3 >= 1.23
4+
urllib3 >= 1.21.1, <2.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# prerequisite: setuptools
3838
# http://pypi.python.org/pypi/setuptools
3939

40-
REQUIRES = ["certifi>=2017.4.17", "python-dateutil>=2.1", "six>=1.10", "urllib3>=1.23"]
40+
REQUIRES = ["certifi>=2017.4.17", "python-dateutil>=2.1", "six>=1.10", "urllib3 >= 1.21.1, <2.0"]
4141

4242
here = os.path.abspath(os.path.dirname(__file__))
4343

0 commit comments

Comments
 (0)