Skip to content

Commit

Permalink
Replaced further direct invocations of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 19, 2021
1 parent a1677ea commit e94a54c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ help:

.PHONY: inplace
inplace: clean
python3 setup.py develop build_ext --inplace
python3 -m pip install -e --global-option="build_ext" --global-option="--inplace" .

.PHONY: install
install:
Expand Down Expand Up @@ -83,7 +83,7 @@ install-venv:
.PHONY: release-test
release-test:
$(MAKE) install-req
python3 setup.py develop
python3 -m pip install -e .
python3 selftest.py
python3 -m pytest Tests
python3 -m pip install .
Expand Down

0 comments on commit e94a54c

Please sign in to comment.