Skip to content

Commit c59f059

Browse files
author
rob
committed
update required requests version to 2.16.2+
2.16.0 is the first version of requests to explicitly depend on urllib3, though there are problems with 2.16.0 and 2.16.1. Requiring 2.16.2 allows us to remove our explicit dependency on urllib3 and instead let requests drive the version of urllib3 to install. This should resolve errors where users have older conflicting versions of requests and urllib3 installed.
1 parent 414895c commit c59f059

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
version = eval(line.split('=', 1)[1].strip()) # pylint: disable=eval-used
2626

2727
install_reqs = [
28-
'requests >= 2.5.1, != 2.6.1, !=2.16.0, !=2.16.1',
28+
'requests >= 2.16.2',
2929
'six >= 1.3.0',
30-
'urllib3',
3130
]
3231

3332
setup_requires = [

0 commit comments

Comments
 (0)