Skip to content

Commit d29b315

Browse files
author
Guillem Duran
committed
Fix urllib3 dependency conflict
Signed-off-by: Guillem Duran <[email protected]>
1 parent c73a323 commit d29b315

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ numpy==1.14.0
44
scipy==1.0.0
55
clint==0.5.1
66
google-cloud-storage==1.2.0
7+
# Requests should be first to avoid dependency problems on urllib3
8+
requests==2.21.0
79
dulwich==0.19.11
810
jinja2 ==2.10
911
humanize==0.5.1
1012
python-dateutil==2.7.3
11-
requests==2.21.0
1213
pygtrie==2.3
1314
xxhash==1.2.0
1415
spdx==2.5.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
"scipy>=1.0,<2.0",
3232
"clint>=0.5.0,<0.6",
3333
"google-cloud-storage>=1.2,<=1.2.0",
34+
"requests >=2.0,<3.0",
3435
"dulwich>=0.19,<1.0",
3536
"jinja2 >=2.0,<3.0",
3637
"humanize>=0.5.0,<0.6",
3738
"python-dateutil>=2.0,<3.0",
38-
"requests >=2.0,<3.0",
3939
"typing;python_version<'3.5'",
4040
"pygtrie>=1.0,<3.0",
4141
"xxhash>=1.0,<2.0",

0 commit comments

Comments
 (0)