Skip to content

Commit

Permalink
Fix CI feature file format checking failure caused by setuptools upgr…
Browse files Browse the repository at this point in the history
…ading (#3897)

* Fix CI feature file format checking failure caused by setuptools upgrading

* downgrade setuptools
  • Loading branch information
yixinglu authored Feb 15, 2022
1 parent 13c717e commit 847d3f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ test_j_sa = $(test_without_skip_sa) -n$(J)


install-deps:
pip3 install --user -U setuptools wheel -i $(PYPI_MIRROR)
pip3 install --user -r $(CURR_DIR)/requirements.txt -i $(PYPI_MIRROR)
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
cd $(CURR_DIR)/nebula-python \
Expand Down
2 changes: 2 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
setuptools==59.6.0
wheel==0.37.1
pytest==5.3.2
pytest-html==2.0.1
pytest-metadata==1.8.0
Expand Down

0 comments on commit 847d3f3

Please sign in to comment.