Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 465 Bytes

RELEASE.md

File metadata and controls

25 lines (19 loc) · 465 Bytes

Releasing to pypi

  • update CHANGELOG.md

  • increment version in setup.py

  • push to master (via PR)

  • git tag versionCode

  • git push origin versionCode

  • generate wheel:

python3 setup.py sdist bdist_wheel
  • test upload to TestPypi with twine
  • use __token__ for username and a token for password
python -m twine upload --repository testpypi dist/* --verbose
  • release to official pypi:
python -m twine upload dist/*