Skip to content

Commit

Permalink
Fix package version conflict (#1201)
Browse files Browse the repository at this point in the history
* Fix package version conflict

* Fixing component_sdk requirements.txt
  • Loading branch information
Ark-kun authored and k8s-ci-robot committed Apr 23, 2019
1 parent b292663 commit 99c40a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions component_sdk/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
kubernetes == 8.0.1
urllib3>=1.15,<1.25 #Fixing the version conflict with the "requests" package
fire == 0.1.3
google-api-python-client == 1.7.8
google-cloud-storage == 1.14.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
VERSION = '0.1.16'

REQUIRES = [
'urllib3>=1.15',
'urllib3>=1.15,<1.25', #Fixing the version conflict with the "requests" package
'six >= 1.10',
'certifi',
'python-dateutil',
Expand Down

0 comments on commit 99c40a2

Please sign in to comment.