8000 Fix broken dependencies. · abhinavcoder/python@a579f15 · GitHub
[go: up one dir, main page]

Skip to content

Commit a579f15

Browse files
authored
Fix broken dependencies.
All our libraries that depended on `kubernetes` started breaking today. The reason is that pip does not do a good job properly resolving the compatible package versions. It just install packages in order without caring about the incompatibilities. The urllib3 package installed is incompatible with the `requests` package that's getting installed later. Changing the order fixes the issue.
1 parent 7fb3a25 commit a579f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ certifi>=14.05.14 # MPL
22
six>=1.9.0 # MIT
33
python-dateutil>=2.5.3 # BSD
44
setuptools>=21.0.0 # PSF/ZPL
5-
urllib3>=1.23 # MIT
65
pyyaml>=3.12 # MIT
76
google-auth>=1.0.1 # Apache-2.0
87
ipaddress>=1.0.17;python_version=="2.7" # PSF
98
websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+
109
requests # Apache-2.0
1110
requests-oauthlib # ISC
11+
urllib3>=1.23 # MIT

0 commit comments

Comments
 (0)
0