Skip to content

Commit 3daa729

Browse files
zoobamiss-islington
authored andcommitted
pythongh-132649: Allow passing --include-tcltk to PC\layout on Windows ARM64 (pythonGH-132650)
(cherry picked from commit b87189d) Co-authored-by: Steve Dower <[email protected]>
1 parent 582d1ef commit 3daa729

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The :file:`PC\layout` script now allows passing ``--include-tcltk`` on
2+
Windows ARM64.

PC/layout/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def main():
657657
if ns.arch not in ("win32", "amd64", "arm32", "arm64"):
658658
log_error("--arch is not a valid value (win32, amd64, arm32, arm64)")
659659
return 4
660-
if ns.arch in ("arm32", "arm64"):
660+
if ns.arch == "arm32":
661661
for n in ("include_idle", "include_tcltk"):
662662
if getattr(ns, n):
663663
log_warning(f"Disabling --{n.replace('_', '-')} on unsupported platform")

0 commit comments

Comments
 (0)