mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-14 15:22:13 +03:00
Add install-venv makefile target [ci skip]
- Creates a venv, runs pip install
This commit is contained in:
parent
3af794bc05
commit
74493e1616
6
Makefile
6
Makefile
|
@ -33,6 +33,7 @@ help:
|
|||
@echo " inplace make inplace extension"
|
||||
@echo " install make and install"
|
||||
@echo " install-req install documentation and test dependencies"
|
||||
@echo " install-venv install in virtualenv"
|
||||
@echo " release-test run code and package tests before release"
|
||||
@echo " test run tests on installed pillow"
|
||||
@echo " upload build and upload sdists to PyPI"
|
||||
|
@ -48,6 +49,8 @@ install:
|
|||
install-req:
|
||||
pip install -r requirements.txt
|
||||
|
||||
install-venv: venv install-req
|
||||
|
||||
release-test:
|
||||
$(MAKE) install-req
|
||||
python setup.py develop
|
||||
|
@ -76,5 +79,8 @@ upload-test:
|
|||
upload:
|
||||
python setup.py sdist --format=gztar,zip upload
|
||||
|
||||
venv:
|
||||
virtualenv .
|
||||
|
||||
readme:
|
||||
viewdoc
|
||||
|
|
Loading…
Reference in New Issue
Block a user