pip install bumpver build twine
How to increase the version number:
git checkout main
git pull
bumpver update --patch # or --minor or --major
git push
git push --tags
This triggers the CI to build and release the package.
ATTENTION: The following steps are performed automatically
(by the CI release job)
If you want to release manually:
python -m build
twine check dist/*
twine upload dist/* # user: ct2034_0
https://realpython.com/pypi-publish-python-package/#build-your-package