From 9fe2bfbd82091ad638feebf21dfdd64e72f6f8f0 Mon Sep 17 00:00:00 2001 From: Vee Zhang Date: Wed, 20 Mar 2024 18:54:30 +0800 Subject: [PATCH] Fixed nebula-python version instead of master --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index caf4f48176c..9f7249749b3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -47,7 +47,7 @@ install-deps: pip3 install --user -Ur $(CURR_DIR)/requirements.txt -i $(PYPI_MIRROR) install-nebula-py: install-deps - git clone --branch master https://github.com/vesoft-inc/nebula-python $(CURR_DIR)/nebula-python + git clone --branch release-3.5 https://github.com/vesoft-inc/nebula-python $(CURR_DIR)/nebula-python cd $(CURR_DIR)/nebula-python \ && pip3 install --user . -i $(PYPI_MIRROR) --upgrade rm -rf $(CURR_DIR)/nebula-python