Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 490 Bytes

RELEASING.md

File metadata and controls

24 lines (17 loc) · 490 Bytes

Releasing

Prerequisites

  • First check that the CHANGELOG (see docs/changelog.md) 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 upstream && git push upstream --tags

Push to PyPI

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