-
Notifications
You must be signed in to change notification settings - Fork 30
How to make a release
Hendrik Buschmeier edited this page Mar 19, 2014
·
5 revisions
Releasing a new version of TextGridTools on GitHub and PyPI is very easy:
- Update the version number in the file
setup.py
. - Commit your changes and push them to GitHub.
- Add a tag of the version number, e.g.,
git tag 1.02 -a -m "Version 1.0.2"
. - Push the new tag to GitHub
git push --tags
. - Upload the source distribution of the new release to PyPI by executing
python setup.py sdist upload
.
That’s it.