Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Jan 17, 2023
1 parent 092cbc3 commit 4e80f2b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-graphscope-wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ jobs:
popd
# install tensorflow
python3 -m pip install pytest "tensorflow<=2.5.2" "pandas<1.5.0" "wrapt" --user
python3 -m pip install pytest "tensorflow<=2.5.2" "pandas<1.5.0" --user
python3 -m pip install -U wrapt --user
# install jdk
dnf install -y java-11-openjdk-devel
Expand Down
2 changes: 2 additions & 0 deletions k8s/internal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ graphscope-client-manylinux2014-py3-nodocker:
pip3 install -U pip; \
if [ "$$py" == "cp311-cp311" ]; then \
pip3 install "numpy" "pandas" "grpcio" "grpcio-tools" wheel "auditwheel==5.0.0"; \
elif [ "$$py" == "cp310-cp310" ]; then \
pip3 install "numpy==1.21.6" "pandas" "grpcio<=1.43.0,>=1.40.0" "grpcio-tools<=1.43.0,>=1.40.0" wheel "auditwheel==5.0.0"; \
else \
pip3 install "numpy==1.18.5" "pandas" "grpcio<=1.43.0,>=1.40.0" "grpcio-tools<=1.43.0,>=1.40.0" wheel "auditwheel==5.0.0"; \
fi; \
Expand Down
8 changes: 8 additions & 0 deletions python/graphscope/tests/minitest/test_min.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ def simple_flow(sess, ogbn_small_script):
interactive = sess.gremlin(graph)
papers = interactive.execute(ogbn_small_script).one()

# waiting for graphlearn support python3.10
if sys.version_info[1] >= 10:
return

# GLE on ogbn_mag_small graph
paper_features = []
for i in range(128):
Expand Down Expand Up @@ -217,6 +221,10 @@ def test_demo_with_default_session(ogbn_small_script):
sub_graph = sub_graph.add_column(ret1, {"kcore": "r"})
sub_graph = sub_graph.add_column(ret2, {"tc": "r"})

# waiting for graphlearn support python3.10
if sys.version_info[1] >= 10:
return

# GLE on ogbn_mag_small graph
paper_features = []
for i in range(128):
Expand Down

0 comments on commit 4e80f2b

Please sign in to comment.