We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15bb71 commit 35adea9Copy full SHA for 35adea9
1 file changed
release.py
@@ -471,8 +471,8 @@ def tweak_patchlevel(
471
"f": "PY_RELEASE_LEVEL_FINAL",
472
}[tag.level]
473
if done:
474
- # 3.15+ uses "+dev" for PEP 440 local-version compliance; older
475
- # branches keep the bare "+" they were released with.
+ # 3.15+ uses "+dev" for PEP 440 local-version compliance;
+ # 3.14 and earlier keep the bare "+" suffix.
476
plus = "+dev" if tag.as_tuple() >= (3, 15) else "+"
477
else:
478
plus = ""
0 commit comments