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 c4976a6 commit a11df75Copy full SHA for a11df75
PC/layout/support/constants.py
@@ -10,7 +10,7 @@
10
11
VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4 = struct.pack(">i", sys.hexversion)
12
VER_FIELD3 = VER_MICRO << 8 | VER_FIELD4
13
-VER_NAME = {"alpha": "a", "beta": "b", "rc": "rc"}.get(
+VER_NAME = {"alpha": "a", "beta": "b", "candidate": "rc"}.get(
14
sys.version_info.releaselevel, ""
15
)
16
VER_SERIAL = sys.version_info.serial if VER_NAME else ""
0 commit comments