From 5043ec78afc63506ce70fca01d2936928cb0fedb Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Mon, 21 Oct 2019 15:45:23 -0700 Subject: [PATCH] SDK - Setup - Added cloudpickle to requirements (#2437) * SDK - Setup - Added cloudpickle to requirements * Specifying the exact cloudpickle version --- sdk/python/requirements.txt | 1 + sdk/python/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/python/requirements.txt b/sdk/python/requirements.txt index e1b7aee865..dbede61c6d 100644 --- a/sdk/python/requirements.txt +++ b/sdk/python/requirements.txt @@ -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 diff --git a/sdk/python/setup.py b/sdk/python/setup.py index afe0d1fadd..46f51e5c08 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -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',