Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 664 Bytes

how_to_release.md

File metadata and controls

40 lines (27 loc) · 664 Bytes

Note for me

Requirements

pip install bumpver build twine

Steps

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.

ALL BELOW IS PERFORMED AUTOMATICALLY

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

source

https://realpython.com/pypi-publish-python-package/#build-your-package