The methods we use to tag a new release should be clearly stated in the contributing documentation. I don't think we do anything elaborate, so we can likely borrow directly from documentation of existing/related projects (e.g. https://github.com/Ouranosinc/xclim/issues/813).
@cjauvin Is there anything that you do that differs from the following when creating a release for PyPI?:
The methods we use to tag a new release should be clearly stated in the contributing documentation. I don't think we do anything elaborate, so we can likely borrow directly from documentation of existing/related projects (e.g. https://github.com/Ouranosinc/xclim/issues/813).
@cjauvin Is there anything that you do that differs from the following when creating a release for PyPI?:
bumpversion minor
)git checkout master
git tag v<major>.<minor>.<patch>
git push --tags
python setup.py sdist bdist_wheel
twine upload dist/*