SDK - Setup - Added cloudpickle to requirements (#2437)

* SDK - Setup - Added cloudpickle to requirements

* Specifying the exact cloudpickle version
This commit is contained in:
Alexey Volkov 2019-10-21 15:45:23 -07:00 committed by Kubernetes Prow Robot
parent 735e627a03
commit 5043ec78af
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ PyJWT>=1.6.4
cryptography>=2.4.2
google-auth>=1.6.1
requests_toolbelt>=0.8.0
cloudpickle==1.1.1
kfp-server-api >= 0.1.18, < 0.1.19
argo-models == 2.2.1a
jsonschema >= 3.0.1

View File

@ -31,7 +31,7 @@ REQUIRES = [
'cryptography>=2.4.2',
'google-auth>=1.6.1',
'requests_toolbelt>=0.8.0',
'cloudpickle',
'cloudpickle==1.1.1',
'kfp-server-api >= 0.1.18, <= 0.1.25', #Update the upper version whenever a new version of the kfp-server-api package is released. Update the lower version when there is a breaking change in kfp-server-api.
'argo-models == 2.2.1a', #2.2.1a is equivalent to argo 2.2.1
'jsonschema >= 3.0.1',