Skip to content

Release Notes

William Hart edited this page Apr 6, 2021 · 1 revision

Steps for tagging a release:

git tag -a v1.0.1 -m "Version 1.0.1"
git push origin v1.0.1

Steps for updating PyPI:

\rm -Rf dist
python setup.py sdist bdist_wheel
python -m twine upload dist/*
Clone this wiki locally