Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 431 Bytes

RELEASING.md

File metadata and controls

24 lines (17 loc) · 431 Bytes

Releasing

Prerequisites

  • 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

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

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

Push to PyPI

rm -rf dist/*
rm -rf build/*
python -m build
twine upload dist/*