The recommended way to make a release is to use jupyter_releaser
.
-
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/*