I have a Python project that uses pyproject.toml and poetry. The authoritative version for the project is in both the pyproject.toml and in <PACKAGE>/__init__.py as __version__.
I know there is a python release-type but that clearly won't work for me.
How can I modify the .github/workflows/release-please.yml file to change the version in those files as well?
I have a Python project that uses
pyproject.tomland poetry. The authoritative version for the project is in both thepyproject.tomland in<PACKAGE>/__init__.pyas__version__.I know there is a python release-type but that clearly won't work for me.
How can I modify the
.github/workflows/release-please.ymlfile to change the version in those files as well?