Skip to content

Commit 093e293

Browse files
zoobamiss-islington
authored andcommitted
bpo-39012: Fix RC version suffix for nuget release files (pythonGH-17564)
(cherry picked from commit d0802d0) Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent 3ac65a7 commit 093e293

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

β€ŽPC/layout/support/constants.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _unpack_hexversion():
2020

2121

2222
def _get_suffix(field4):
23-
name = {0xA0: "a", 0xB0: "b", 0xC0: "c"}.get(field4 & 0xF0, "")
23+
name = {0xA0: "a", 0xB0: "b", 0xC0: "rc"}.get(field4 & 0xF0, "")
2424
if name:
2525
serial = field4 & 0x0F
2626
return f"{name}{serial}"

0 commit comments

Comments
 (0)