Fix package version conflict (#1201)
* Fix package version conflict * Fixing component_sdk requirements.txt
This commit is contained in:
parent
b29266351e
commit
99c40a22cf
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue