Skip to content

Commit

Permalink
fix: change to recommended dev build (#396)
Browse files Browse the repository at this point in the history
Change from deprecated "python setup.py develop" to "pip install -e ."

This removes annoying deprecated setup.py message (for which direct
calling is deprecated not setup.py itself?)

pypa/setuptools#917 (comment)
  • Loading branch information
digikata authored Mar 20, 2024
1 parent 3c66740 commit 83b4fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install-wheel: build-wheel
$(PIP) install --upgrade --force-reinstall --no-index --pre --find-links=dist/ fluvio

build-dev: venv-pip
$(PYTHON) setup.py develop
$(PIP) install -e .

integration-tests: build-dev
cd integration-tests/ && $(PYTHON) -m unittest
Expand Down

0 comments on commit 83b4fc0

Please sign in to comment.