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 a1b8e68 commit c9383c2Copy full SHA for c9383c2
cpython-unix/build.py
@@ -596,10 +596,17 @@ def build_cpython(
596
"d" if debug else "",
597
)
598
599
+ if platform == "linux64":
600
+ os_name = "linux"
601
+ elif platform == "macos":
602
+ os_name = "macos"
603
+ else:
604
+ raise ValueError("unhandled platform: %s" % platform)
605
+
606
# Create PYTHON.json file describing this distribution.
607
python_info = {
608
"version": "3",
- "os": "linux",
609
+ "os": os_name,
610
"arch": "x86_64",
611
"python_flavor": "cpython",
612
"python_version": entry["version"],
0 commit comments