Fix package version conflict (#1201)

* Fix package version conflict

* Fixing component_sdk requirements.txt
This commit is contained in:
Alexey Volkov 2019-04-22 17:52:06 -07:00 committed by Kubernetes Prow Robot
parent b29266351e
commit 99c40a22cf
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -18,7 +18,7 @@ NAME = 'kfp'
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',