-
# file generated by setuptools-scm
# don't change, don't track in version control
...
__version__ = version = '8.0.0a5.dev2+g7b7c6c9.d20250317'
__version_tuple__ = version_tuple = (8, 0, 0, 'dev2', 'g7b7c6c9.d20250317') Another output:
The version tuple doesn't contain the alpha version. It's not the "tag pattern" I need to modify, tuple creation is not based on that and they claim it's PEP440 compliant ats well, but what then? |
Beta Was this translation helpful? Give feedback.
8000
You must be logged in to vote
Answered by
pycaw
Mar 18, 2025
Replies: 2 comments 3 replies
-
This is a bug |
Beta Was this translation helpful? Give feedback.
1 reply
-
Please open an issue here: https://github.com/pypa/setuptools-scm |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
version bumping -- nevermind, not a bug
Okay, there's a related issue too, when there's commits after the last tag, it doesn't just append
.dev*
(starting the index at 1 instead of 0 for some reason) but it bumps the alpha version (where tag isv<x>.<y>.<z>a<n>
).pypa/setuptools-scm#1119