Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 613 Bytes

File metadata and controls

40 lines (24 loc) · 613 Bytes

Release Process

Update the version in pyproject.toml.

Then build as below.

Requirement: pip install build

Build from Windows

del dist\*.* /Q && python -m build

to delete any previous releases from the dist folder and then build.

Build from Linux

rm dist/*.* | python3 -m build

to delete any previous releases from the dist folder and then build.

Release on PyPI

First, if needed: pip install twine

Upload to PyPi:

python -m twine upload dist/*

Upload to PyPiTest:

python -m twine upload --repository testpypi dist/*