mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Use venv & run release-test [ci skip]
- Call python with relative path (bin/python) to use venv python. - Possibly positioning `install-venv` to be the default target. - No need to factor out venv target.
This commit is contained in:
parent
5bb7ac3662
commit
557801977e
8
Makefile
8
Makefile
|
@ -55,7 +55,10 @@ install:
|
|||
install-req:
|
||||
pip install -r requirements.txt
|
||||
|
||||
install-venv: venv install-req
|
||||
install-venv:
|
||||
virtualenv .
|
||||
bin/pip install -r requirements.txt
|
||||
$(MAKE) release-test
|
||||
|
||||
release-test:
|
||||
$(MAKE) install-req
|
||||
|
@ -85,8 +88,5 @@ upload-test:
|
|||
upload:
|
||||
python setup.py sdist --format=gztar,zip upload
|
||||
|
||||
venv:
|
||||
virtualenv .
|
||||
|
||||
readme:
|
||||
viewdoc
|
||||
|
|
Loading…
Reference in New Issue
Block a user