Skip to content

Latest commit

History

History
24 lines (17 loc) 路 446 Bytes

RELEASING.md

File metadata and controls

24 lines (17 loc) 路 446 Bytes

Releasing

Prerequisites

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

Push to GitHub

Change from patch to minor or major for appropriate version updates.

bumpversion patch
git push && git push --tags

Push to PyPI

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