File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,7 @@ windows:
320
320
- " 3.11"
321
321
- " 3.12"
322
322
- " 3.13"
323
+ - " 3.14"
323
324
build_options :
324
325
- pgo
325
326
build_options_conditional :
@@ -336,6 +337,7 @@ windows:
336
337
- " 3.11"
337
338
- " 3.12"
338
339
- " 3.13"
340
+ - " 3.14"
339
341
build_options :
340
342
- pgo
341
343
build_options_conditional :
Original file line number Diff line number Diff line change @@ -568,7 +568,8 @@ def hack_project_files(
568
568
569
569
# We're still on the pre-built tk-windows-bin 8.6.12 which doesn't have a
570
570
# standalone zlib DLL. So remove references to it from 3.12+.
571
- if meets_python_minimum_version (python_version , "3.12" ):
571
+ # On 3.14, something changed
572
+ if meets_python_minimum_version (python_version , "3.12" ) and meets_python_maximum_version (python_version , "3.13" ):
572
573
static_replace_in_file (
573
574
pcbuild_path / "_tkinter.vcxproj" ,
574
575
rb'<_TclTkDLL Include="$(tcltkdir)\bin\$(tclZlibDllName)" />' ,
@@ -1690,6 +1691,7 @@ def main() -> None:
1690
1691
"cpython-3.11" ,
1691
1692
"cpython-3.12" ,
1692
1693
"cpython-3.13" ,
1694
+ "cpython-3.14" ,
1693
1695
},
1694
1696
default = "cpython-3.11" ,
1695
1697
help = "Python distribution to build" ,
You can’t perform that action at this time.
0 commit comments