Skip to content

Commit c9b3f8a

Browse files
committed
Drop 8612 special case
1 parent fc0e640 commit c9b3f8a

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

cpython-windows/build.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"_lzma": ["xz"],
123123
"_sqlite3": ["sqlite"],
124124
"_ssl": ["openssl"],
125-
"_tkinter": ["tcl-8612", "tk-8612", "tix"],
125+
"_tkinter": ["tcl", "tk", "tix"],
126126
"_uuid": ["uuid"],
127127
"zlib": ["zlib"],
128128
"_zstd": ["zstd"],
@@ -370,10 +370,7 @@ def hack_props(
370370

371371
mpdecimal_version = DOWNLOADS["mpdecimal"]["version"]
372372

373-
if meets_python_minimum_version(python_version, "3.14") or arch == "arm64":
374-
tcltk_commit = DOWNLOADS["tk-windows-bin"]["git_commit"]
375-
else:
376-
tcltk_commit = DOWNLOADS["tk-windows-bin-8612"]["git_commit"]
373+
tcltk_commit = DOWNLOADS["tk-windows-bin"]["git_commit"]
377374

378375
sqlite_path = td / ("sqlite-autoconf-%s" % sqlite_version)
379376
bzip2_path = td / ("bzip2-%s" % bzip2_version)
@@ -1220,10 +1217,6 @@ def find_additional_dependencies(project: pathlib.Path):
12201217
if name == "zlib":
12211218
name = zlib_entry
12221219

1223-
# On 3.14+ and aarch64, we use the latest tcl/tk version
1224-
if ext == "_tkinter" and (python_majmin == "314" or arch == "arm64"):
1225-
name = name.replace("-8612", "")
1226-
12271220
download_entry = DOWNLOADS[name]
12281221

12291222
# This will raise if no license metadata defined. This is

0 commit comments

Comments
 (0)