Skip to content

Commit 97fb4f4

Browse files
committed
Add --include-freethreaded flag to python.bat invocation
1 parent e450240 commit 97fb4f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cpython-windows/build.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1629,6 +1629,9 @@ def build_cpython(
16291629
"--include-venv",
16301630
]
16311631

1632+
if freethreaded:
1633+
args.append("--include-freethreaded")
1634+
16321635
# CPython 3.12 removed distutils.
16331636
if not meets_python_minimum_version(python_version, "3.12"):
16341637
args.append("--include-distutils")

0 commit comments

Comments
 (0)