Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.9] gh-115436: Avoid falling back to deprecated Apple-supplied Tcl/Tk 8.5 on macOS. #115438

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Avoid falling back to the deprecated Apple-supplied system Tcl/Tk 8.5 on
macOS builds as this version is known to have many critical problems and
causes Python test suite failures. This last-ditch fallback behavior was
removed in Python 3.11 but is still causing problems for users and Python
release testing for older security-fix-only branches like this one. With
this change, building of `_tkinter` on macOS will be skipped if no other
versions of Tcl/Tk can be found.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1867,8 +1867,7 @@ def detect_tkinter_darwin(self):
# Tcl and Tk frameworks installed in /Library/Frameworks.
# 2. Build and link using a user-specified macOS SDK so that the
# built Python can be exported to other systems. In this case,
# search only the SDK's /Library/Frameworks (normally empty)
# and /System/Library/Frameworks.
# search only the SDK's /Library/Frameworks (normally empty).
#
# Any other use case should be able to be handled explicitly by
# using the options described above in detect_tkinter_explicitly().
Expand All @@ -1888,6 +1887,10 @@ def detect_tkinter_darwin(self):
# all possible by installing a newer version of Tcl and Tk in
# /Library/Frameworks before building Python without
# an explicit SDK or by configuring build arguments explicitly.
# CHANGED: we no longer fall back to searching for the
# Apple-supplied Tcl and Tk 8.5 in /System/Library/Frameworks
# as their use causes too many problems for users. It seems
# better to just skip building _tkinter at all in that case.

from os.path import join, exists

Expand All @@ -1898,17 +1901,13 @@ def detect_tkinter_darwin(self):
# Only search there.
framework_dirs = [
join(sysroot, 'Library', 'Frameworks'),
join(sysroot, 'System', 'Library', 'Frameworks'),
]
else:
# Use case #1: no explicit SDK selected.
# Search the local system-wide /Library/Frameworks,
# not the one in the default SDK, otherwise fall back to
# /System/Library/Frameworks whose header files may be in
# the default SDK or, on older systems, actually installed.
# not the one in the default SDK.
framework_dirs = [
join('/', 'Library', 'Frameworks'),
join(sysroot, 'System', 'Library', 'Frameworks'),
]

# Find the directory that contains the Tcl.framework and
Expand Down