Add sdist helpers to makefile [ci skip]

Document in RELEASING
This commit is contained in:
Alex Clark 2015-04-01 06:16:36 -04:00
parent 54956f57c6
commit d58e6f873c
2 changed files with 18 additions and 1 deletions

View File

@ -58,4 +58,17 @@ docs:
$(MAKE) -C docs html
docserver:
cd docs/_build/html && python -mSimpleHTTPServer 2> /dev/null&
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

View File

@ -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?)