- Determine if this should be a major, minor, or patch release.
- Run
bumpversion part
(where part is major, minor or patch). This will update the version number inkintyre_speedtest.py
, create a new commit, and tag. - Run
git push origin master --tags
to push both the code changes and the new tag. - Travis CI will automatically build and publish the release to PyPI.
Legacy/local package release can be completed by:
- Make release:
python setup sdist bdist_wheel
- Upload:
twine upload dist/*
\