Skip to content

Commit 18da2d0

Browse files
committed
Removed inplace target
1 parent 4f734d2 commit 18da2d0

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,13 @@ help:
4646
@echo " docserve run an HTTP server on the docs directory"
4747
@echo " html make HTML docs"
4848
@echo " htmlview open the index page built by the html target in your browser"
49-
@echo " inplace make inplace extension"
5049
@echo " install make and install"
5150
@echo " install-coverage make and install with C coverage"
5251
@echo " lint run the lint checks"
5352
@echo " lint-fix run Black and isort to (mostly) fix lint issues"
5453
@echo " release-test run code and package tests before release"
5554
@echo " test run tests on installed Pillow"
5655

57-
.PHONY: inplace
58-
inplace: clean
59-
python3 -m pip install -e --global-option="build_ext" --global-option="--inplace" .
60-
6156
.PHONY: install
6257
install:
6358
python3 -m pip -v install .

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extras =
1313
tests
1414
commands =
1515
make clean
16-
{envpython} -m pip install --global-option="build_ext" --global-option="--inplace" .
16+
{envpython} -m pip install .
1717
{envpython} selftest.py
1818
{envpython} -m pytest -W always {posargs}
1919
allowlist_externals =

0 commit comments

Comments
 (0)