The process for publishing new versions of this library is the following:
- Update the version number in
setup.py
- Generate distribution archives
pip install --upgrade build
python -m build
- Upload distribution archives
pip install --upgrade twine
twine upload dist/*
- Publish the tag
- git tag -a "0.X" -m "Release 0.X"
- git push --tags
- Publish the release
- Go to https://github.com/czue/celery-progress/releases/new
- Create a release from the tag you just added.
- Click "generate release notes"
- Click "publish"