We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apearantly https://setuptools-scm.readthedocs.io is able to get a version from the current or past git tags and writes it in a _version.py file.
_version.py
requires = ["setuptools", "setuptools_scm", "wheel"] ... [tool.setuptools_scm] version_file = "rdmo/_version.py" ...
We could use that together with:
try: from ._version import __version__, __version_tuple__, version, version_tuple except ImportError: __version__ = __version_tuple__ = version = version_tuple = None
in __init__.py and never update versions again. (Not testes with RDMO yet.)
__init__.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Apearantly https://setuptools-scm.readthedocs.io is able to get a version from the current or past git tags and writes it in a
_version.py
file.We could use that together with:
in
__init__.py
and never update versions again. (Not testes with RDMO yet.)The text was updated successfully, but these errors were encountered: