diff --git a/k8s/Makefile b/k8s/Makefile index f324d23a30f3..9dc658cf7ed9 100644 --- a/k8s/Makefile +++ b/k8s/Makefile @@ -204,7 +204,7 @@ graphscope-client-manylinux2014-py3: for py in cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 ; do \ cd /work/python; \ export PATH=/opt/python/$$py/bin:$$PATH; \ - pip3 install -U pip numpy==1.18.5 auditwheel grpcio grpcio_tools wheel ; \ + pip3 install -U pip numpy==1.18.5 auditwheel==5.0.0 grpcio grpcio_tools wheel ; \ rm -rf build; \ rm -rf dist/*.whl; \ python3 setup.py bdist_wheel; \ diff --git a/k8s/manylinux2014.Dockerfile b/k8s/manylinux2014.Dockerfile index 743dc122fed1..ae30508bc070 100644 --- a/k8s/manylinux2014.Dockerfile +++ b/k8s/manylinux2014.Dockerfile @@ -305,7 +305,7 @@ RUN cd /tmp && export KUBE_VER=v1.19.2 && \ # install python3.9 deps for all RUN /opt/python/cp39-cp39/bin/pip3 install -U pip && \ - /opt/python/cp39-cp39/bin/pip3 --no-cache-dir install auditwheel daemons etcd-distro grpcio-tools gremlinpython \ + /opt/python/cp39-cp39/bin/pip3 --no-cache-dir install auditwheel==5.0.0 daemons etcd-distro grpcio-tools gremlinpython \ hdfs3 fsspec oss2 s3fs ipython kubernetes libclang networkx==2.4 numpy pandas parsec pycryptodome \ pyorc pytest scipy scikit_learn wheel && \ /opt/python/cp39-cp39/bin/pip3 --no-cache-dir install Cython --pre -U