Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 501 Bytes

RELEASE.md

File metadata and controls

26 lines (20 loc) · 501 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:

python -m pip install pip wheel twine
python3 -m pip wheel .
  • test upload to TestPypi with twine
  • use __token__ for username and a token for password
python -m twine upload --repository testpypi ./pymvr*whl --verbose
  • release to official pypi:
python -m twine upload ./pymvr*whl