Skip to content

Commit 3e66cd6

Browse files
committed
Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
1 parent e20e3ab commit 3e66cd6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2458,6 +2458,8 @@ Tests
24582458
Build
24592459
-----
24602460

2461+
- Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
2462+
24612463
- Issue #1496032: On alpha, use -mieee when gcc is the compiler.
24622464

24632465
- Issue #2544: On HP-UX systems, use 'gcc -shared' for linking when

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,8 +1539,8 @@ def detect_tkinter(self, inc_dirs, lib_dirs):
15391539
# The versions with dots are used on Unix, and the versions without
15401540
# dots on Windows, for detection by cygwin.
15411541
tcllib = tklib = tcl_includes = tk_includes = None
1542-
for version in ['8.5', '85', '8.4', '84', '8.3', '83', '8.2',
1543-
'82', '8.1', '81', '8.0', '80']:
1542+
for version in ['8.6', '86', '8.5', '85', '8.4', '84', '8.3', '83',
1543+
'8.2', '82', '8.1', '81', '8.0', '80']:
15441544
tklib = self.compiler_obj.find_library_file(lib_dirs,
15451545
'tk' + version)
15461546
tcllib = self.compiler_obj.find_library_file(lib_dirs,

0 commit comments

Comments
 (0)