mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
Clean up Makefile [ci skip]
- Rename sdistup, sdisttest -> upload, upload-test to better reflect what target does; keep target name short; add targets to help
This commit is contained in:
parent
0706f6b504
commit
91d5da745f
6
Makefile
6
Makefile
|
@ -11,6 +11,8 @@ help:
|
||||||
@echo " docs make html docs"
|
@echo " docs make html docs"
|
||||||
@echo " docserver run an http server on the docs directory"
|
@echo " docserver run an http server on the docs directory"
|
||||||
@echo " install-req install documentation and test dependencies"
|
@echo " install-req install documentation and test dependencies"
|
||||||
|
@echo " upload upload sdists to PyPI"
|
||||||
|
@echo " upload-test upload sdists to test.pythonpackages.com"
|
||||||
|
|
||||||
pre:
|
pre:
|
||||||
virtualenv .
|
virtualenv .
|
||||||
|
@ -67,9 +69,9 @@ docserver:
|
||||||
# password:
|
# password:
|
||||||
# repository = http://test.pythonpackages.com
|
# repository = http://test.pythonpackages.com
|
||||||
#
|
#
|
||||||
sdisttest:
|
upload-test:
|
||||||
python setup.py sdist --format=gztar,zip upload -r test
|
python setup.py sdist --format=gztar,zip upload -r test
|
||||||
sdistup:
|
upload:
|
||||||
python setup.py sdist --format=gztar,zip upload
|
python setup.py sdist --format=gztar,zip upload
|
||||||
sdist:
|
sdist:
|
||||||
python setup.py sdist --format=gztar,zip
|
python setup.py sdist --format=gztar,zip
|
||||||
|
|
Loading…
Reference in New Issue
Block a user