Removed deprecated install-venv

This commit is contained in:
Andrew Murray 2022-02-24 10:20:15 +11:00
parent dac5dfc35b
commit 62a80867d6

View File

@ -39,7 +39,6 @@ help:
@echo " inplace make inplace extension" @echo " inplace make inplace extension"
@echo " install make and install" @echo " install make and install"
@echo " install-coverage make and install with C coverage" @echo " install-coverage make and install with C coverage"
@echo " install-venv (deprecated) install in virtualenv"
@echo " lint run the lint checks" @echo " lint run the lint checks"
@echo " lint-fix run Black and isort to (mostly) fix lint issues" @echo " lint-fix run Black and isort to (mostly) fix lint issues"
@echo " release-test run code and package tests before release" @echo " release-test run code and package tests before release"
@ -67,11 +66,6 @@ debug:
make clean > /dev/null make clean > /dev/null
CFLAGS='-g -O0' python3 -m pip install --global-option="build_ext" . > /dev/null CFLAGS='-g -O0' python3 -m pip install --global-option="build_ext" . > /dev/null
.PHONY: install-venv
install-venv:
echo "'install-venv' is deprecated and will be removed in a future Pillow release"
virtualenv .
.PHONY: release-test .PHONY: release-test
release-test: release-test:
python3 -m pip install -e .[tests] python3 -m pip install -e .[tests]