]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
GH-132930: Display 'free-threaded' in pymanager builds (GH-133119)
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>
Tue, 29 Apr 2025 08:28:04 +0000 (09:28 +0100)
committerGitHub <noreply@github.com>
Tue, 29 Apr 2025 08:28:04 +0000 (09:28 +0100)
PC/layout/support/pymanager.py

index b57e41bee51207fdd5c0dee3323dcf3d904c3fa5..5113b31df3d002a8cb620707e28ed6c8aa1a5e8f 100644 (file)
@@ -67,7 +67,7 @@ def calculate_install_json(ns, *, for_embed=False, for_test=False):
         TAG_SUFFIX = "t"
         TARGET = f"python{VER_MAJOR}.{VER_MINOR}t.exe"
         TARGETW = f"pythonw{VER_MAJOR}.{VER_MINOR}t.exe"
-        DISPLAY_TAGS.append("freethreaded")
+        DISPLAY_TAGS.append("free-threaded")
         FILE_SUFFIX = f"t-{ns.arch}"
 
     FULL_TAG = f"{VER_MAJOR}.{VER_MINOR}.{VER_MICRO}{VER_SUFFIX}{TAG_SUFFIX}"