-
Notifications
You must be signed in to change notification settings - Fork 29
How to release to pypi.org
Takashi Someda edited this page Apr 24, 2018
·
4 revisions
- create account in pypi.org if you don't have
- create
~/.pypirc
to store your user name and password of pypi.org. For more detail, refer to official document. - ask @tksmd to add you to maintainer of this project
- check CI result and confirm no broken build out there
- bump version in
spmimage/__init__.py
and push it todevelopment
branch and wait until CI test finishes - merge
development
withmaster
and add tag to the commit - run
python setup.py clean sdist
. If no error happens, then runpython setup.py clean sdist upload
.