Quick reference how to deploy a new update
-
Update version in
highcharts_excentis/version.py -
Build the project
python -m build
-
Build beta version (
<major>.<minor>.<patch>b<beta>) of the project -
Upload to TestPyPI
python -m twine upload -r testpypi dist/highcharts_excentis-0.4.3b20230327-py3-none-any.whl dist/highcharts-excentis-0.4.3b20230327.tar.gz -
Test installation
pip install -U --extra-index-url https://test.pypi.org/simple/ 'highcharts-excentis==0.4.3b20230327' -
Build release version (
<major>.<minor>.<patch>) of the project -
Upload to PyPI
python -m twine upload -r pypi dist/highcharts_excentis-0.4.3-py3-none-any.whl dist/highcharts-excentis-0.4.3.tar.gz -
Test installation
pip install -U highcharts-excentis -
Add the git tag
git tag v0.4.3 git push --tags