Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 447 Bytes

RELEASE.md

File metadata and controls

28 lines (20 loc) · 447 Bytes

Release Instructions

  1. Change version number in setup.py

  2. Add release notes to CHANGELOG.md

  3. Build package

$ rm -rf dist/
$ python setup.py sdist
  1. Commit changes and tag code
$ git add . --all
$ git commit -a -m "bumped version number"
$ git push origin master
$ git tag <version-number>
$ git push --tags
  1. Push changes to PyPI (using twine)
$ twine upload dist/*