Skip to content

Commit

Permalink
fixed numpy in python3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Jan 17, 2023
1 parent f4d5fb5 commit 092cbc3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions k8s/internal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ graphscope-client-darwin-py3:
pip3 install -U pip && \
if [ "$$py" == "311" ]; then \
pip3 install "numpy" "pandas" "grpcio" "grpcio-tools" delocate wheel; \
elif [ "$$py" == "310" ]; then \
pip3 install "numpy==1.21.6" "pandas" "grpcio<=1.43.0,>=1.40.0" "grpcio-tools<=1.43.0,>=1.40.0" delocate wheel; \
else \
pip3 install "numpy==1.18.5" "pandas" "grpcio<=1.43.0,>=1.40.0" "grpcio-tools<=1.43.0,>=1.40.0" delocate wheel; \
fi; \
Expand Down

0 comments on commit 092cbc3

Please sign in to comment.