Replaced further direct invocations of setup.py

This commit is contained in:
Andrew Murray 2021-12-19 12:13:37 +11:00
parent a1677ead44
commit e94a54ce25

View File

@ -50,7 +50,7 @@ help:
.PHONY: inplace .PHONY: inplace
inplace: clean inplace: clean
python3 setup.py develop build_ext --inplace python3 -m pip install -e --global-option="build_ext" --global-option="--inplace" .
.PHONY: install .PHONY: install
install: install:
@ -83,7 +83,7 @@ install-venv:
.PHONY: release-test .PHONY: release-test
release-test: release-test:
$(MAKE) install-req $(MAKE) install-req
python3 setup.py develop python3 -m pip install -e .
python3 selftest.py python3 selftest.py
python3 -m pytest Tests python3 -m pytest Tests
python3 -m pip install . python3 -m pip install .