conda create --name clean-tree python
conda activate clean-treepython -m pip install -e '.[dev]'coverage erase && python -m pytest --cov clean_tree
tox -e cov_clean,py312Update the version in pyproject.toml
version='X.Y.Z'
Create a git tag and push
git tag vX.Y.Z
git push --tags
Then create a release via github.
Remove old tag and re-tag
git tag -d vX.Y.Z
git tag vX.Y.Z
git push -f --tags
Delete previous github release and re-create.