Fix pip dev version numbering

This commit is contained in:
Matthias Hochsteger 2024-08-29 14:28:05 +02:00
parent 18ea280388
commit 725576fc42

View File

@ -72,7 +72,7 @@ def get_version(cwd):
if len(version) > 1:
version = ".post".join(version)
if is_dev_build():
version += ".dev2"
version += ".dev0"
else:
version = version[0]