Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 378 Bytes

RELEASING.md

File metadata and controls

22 lines (16 loc) · 378 Bytes

Releasing

Pre-requisites

  • First check that the CHANGELOG is up to date for the next release version
  • Ensure dev requirements are installed pip install .[dev]

Push to github

bumpversion patch
git push upstream && git push upstream --tags

Push to PyPi

rm -rf dist/*
rm -rf build/*
python setup.py sdist bdist_wheel
twine upload dist/*