test: install compatible `kfp-server-api` and `kfp` packages (#8829)

* don't install kfp-server-api and kfp both from HEAD

* install compatible kfp-server-api and kfp
This commit is contained in:
Chen Sun 2023-02-09 12:30:01 -08:00 committed by GitHub
parent 0fc174ae28
commit fd3f694d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
from setuptools import setup, find_packages # noqa: H301
NAME = "kfp-server-api"
VERSION = "2.0.0-beta.0"
VERSION = "2.0.0-alpha.6"
# To install the library, run the following
#
# python setup.py install

View File

@ -13,7 +13,7 @@ RUN pip3 install -r /python/src/github.com/kubeflow/pipelines/test/sample-test/r
# TODO: remove deprecated dependency
COPY ./sdk/python/requirements-deprecated.txt /python/src/github.com/kubeflow/pipelines/sdk/python/requirements-deprecated.txt
RUN pip3 install -r /python/src/github.com/kubeflow/pipelines/sdk/python/requirements-deprecated.txt
# Install KFP server API from commit.
# TODO(chensun): Remove install KFP server API from commit once we migrate tests away from using legacy client.
COPY ./backend/api/v1beta1/python_http_client /python_http_client
# Install python client, including DSL compiler.
COPY ./sdk/python /sdk/python