mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Add sdist helpers to makefile [ci skip]
Document in RELEASING
This commit is contained in:
parent
54956f57c6
commit
d58e6f873c
13
Makefile
13
Makefile
|
@ -59,3 +59,16 @@ docs:
|
|||
|
||||
docserver:
|
||||
cd docs/_build/html && python -mSimpleHTTPServer 2> /dev/null&
|
||||
|
||||
# Test sdist upload via test.pythonpackages.com, no creds required
|
||||
# .pypirc:
|
||||
# [test]
|
||||
# username:
|
||||
# password:
|
||||
# repository = http://test.pythonpackages.com
|
||||
sdisttest:
|
||||
python setup.py sdist --format=zip upload -r test
|
||||
sdistup:
|
||||
python setup.py sdist --format=zip upload
|
||||
sdist:
|
||||
python setup.py sdist --format=zip
|
||||
|
|
|
@ -49,6 +49,10 @@ git push origin --tags
|
|||
```
|
||||
python setup.py sdist --format=zip upload
|
||||
```
|
||||
Or
|
||||
```
|
||||
make sdistup
|
||||
```
|
||||
(Debian requests a tarball, everyone else would just prefer that we choose one and stick to it. So both it is)
|
||||
* [ ] Push a commit to https://github.com/python-pillow/pillow-wheels to build OSX versions (UNDONE latest tag or specific release???)
|
||||
* [ ] Retrieve the OS X Wheels from Rackspace files, upload to PyPi (Twine?)
|
||||
|
|
Loading…
Reference in New Issue
Block a user