Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 771 Bytes

RELEASING.md

File metadata and controls

36 lines (23 loc) · 771 Bytes

Releasing

Using jupyter_releaser

The recommended way to make a release is to use jupyter_releaser.

Manual Release

Prerequisites

  • First check that the CHANGELOG.md is up to date for the next release version
  • Install packaging requirements: pip install jupyter_releaser

Bump version

  • export version=<NEW_VERSION>
  • tbump ${version} --no-push

Push to PyPI

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

Dev version

  • Bump the patch version and add the 'dev' tag back to the end of the version tuple using tbump <DEV_VERSION> --no-push

Push to GitHub

git push upstream  && git push upstream --tags