Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 326 Bytes

RELEASE.md

File metadata and controls

16 lines (14 loc) · 326 Bytes

To create a release, run the following:

git clean -dfx
python setup.py sdist
python setup.py bdist_wheel
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/*