Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 382 Bytes

RELEASE.md

File metadata and controls

23 lines (12 loc) · 382 Bytes

To release a new version of qtpy on PyPI:

  • git pull

  • Update CHANGELOG.md

  • Update _version.py (set release version, remove 'dev0')

  • git add and git commit

  • python setup.py sdist upload

  • python setup.py bdist_wheel upload

  • git tag -a vX.X.X -m 'comment'

  • Update _version.py (add 'dev0' and increment minor)

  • git add and git commit

  • git push

  • git push --tags