From c39b2055b2350a0d0111abbc7b4021967d581e8d Mon Sep 17 00:00:00 2001 From: Alan Chin Date: Thu, 7 Oct 2021 14:23:38 -0700 Subject: [PATCH] Exclude kfp dependency version 1.7.2 Exclude specific version of kfp due to it breaking the upload API during pipeline submission --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 836217e84..a9270884d 100644 --- a/setup.py +++ b/setup.py @@ -94,7 +94,7 @@ 'websocket-client', 'yaspin', # KFP runtime dependencies - 'kfp>=1.6.3<2.0', + 'kfp>=1.6.3<2.0,!=1.7.2', # Airflow runtime dependencies 'pygithub', 'black',