Skip to content

How to make a release

Hendrik Buschmeier edited this page Nov 15, 2013 · 5 revisions

Releasing a new version of TextGridTools on GitHub and PyPI is very easy:

  1. Update the version number in the file setup.py.
  2. Commit your changes and push them to GitHub.
  3. Add a tag of the version number, e.g., git tag 1.02 -a -m "Version 1.0.2".
  4. Push the new tag to GitHub git push --tags.
  5. Upload the source distribution of the new release to PyPIby executing python setup.py sdist upload.

That’s it.

Clone this wiki locally