Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 395 Bytes

RELEASE.md

File metadata and controls

15 lines (14 loc) · 395 Bytes

To create a release, update the version number in jupyter_server/_version.py, then run the following:

git clean -dffx
python setup.py sdist
python setup.py bdist_wheel
export script_version=`python setup.py --version 2>/dev/null`
git commit -a -m "Release $script_version"
git tag $script_version
git push --all
git push --tags
pip install twine
twine check dist/* 
twine upload dist/*