Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 533 Bytes

how_to_update.md

File metadata and controls

35 lines (24 loc) · 533 Bytes

Note for me

Requirements

pip install bumpver build twine

Steps

How to update the project:

  1. Increment version

    git checkout main
    git pull
    bumpver update --patch  # or --minor or --major
    git push
    git push --tags

ALL BELOW IS DONE AUTOMATICALLY

  1. Build and upload to PyPI

    python -m build
    twine check dist/*
    twine upload dist/*  # user: ct2034_0

source

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