Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 516 Bytes

RELEASE.md

File metadata and controls

25 lines (19 loc) · 516 Bytes

Release Guide

Using jupyter_releaser

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

Manual Release

  • Update CHANGELOG

  • Run the following:

export VERSION=<version>
pip install jupyter_releaser
tbump --only-patch $VERSION
git commit -a -m "Release $VERSION"
git tag $VERSION; true;
git push --all
git push --tags
rm -rf dist build
python -m build .
twine check dist/* 
twine upload dist/*