File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 7272 },
7373 "_overlapped" : {},
7474 "_multiprocessing" : {},
75+ # Added in 3.14
76+ "_remote_debugging" : {},
7577 "_socket" : {},
7678 "_sqlite3" : {"shared_depends" : ["sqlite3" ]},
7779 # See the one-off calls to copy_link_to_lib() and elsewhere to hack up
117119 "_tkinter" : ["tcl-8612" , "tk-8612" , "tix" ],
118120 "_uuid" : ["uuid" ],
119121 "zlib" : ["zlib" ],
122+ "_zstd" : ["zstd" ],
120123}
121124
122125
@@ -1012,6 +1015,10 @@ def collect_python_build_artifacts(
10121015 if zlib_entry == "zlib-ng" :
10131016 depends_projects |= {"zlib-ng" }
10141017
1018+ # zstd is a dependency for Python 3.14+.
1019+ if python_majmin == "314" :
1020+ depends_projects |= {"_zstd" }
1021+
10151022 known_projects = (
10161023 ignore_projects | other_projects | depends_projects | extension_projects
10171024 )
You can’t perform that action at this time.
0 commit comments