diff --git a/Makefile b/Makefile index 98e0c647a..b4c6b044d 100644 --- a/Makefile +++ b/Makefile @@ -58,4 +58,17 @@ docs: $(MAKE) -C docs html docserver: - cd docs/_build/html && python -mSimpleHTTPServer 2> /dev/null& \ No newline at end of file + 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 diff --git a/RELEASING.md b/RELEASING.md index 2c3422ef9..065d951d8 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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?)