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 72
72
},
73
73
"_overlapped" : {},
74
74
"_multiprocessing" : {},
75
+ # Added in 3.14
76
+ "_remote_debugging" : {},
75
77
"_socket" : {},
76
78
"_sqlite3" : {"shared_depends" : ["sqlite3" ]},
77
79
# See the one-off calls to copy_link_to_lib() and elsewhere to hack up
117
119
"_tkinter" : ["tcl-8612" , "tk-8612" , "tix" ],
118
120
"_uuid" : ["uuid" ],
119
121
"zlib" : ["zlib" ],
122
+ "_zstd" : ["zstd" ],
120
123
}
121
124
122
125
@@ -1012,6 +1015,10 @@ def collect_python_build_artifacts(
1012
1015
if zlib_entry == "zlib-ng" :
1013
1016
depends_projects |= {"zlib-ng" }
1014
1017
1018
+ # zstd is a dependency for Python 3.14+.
1019
+ if python_majmin == "314" :
1020
+ depends_projects |= {"_zstd" }
1021
+
1015
1022
known_projects = (
1016
1023
ignore_projects | other_projects | depends_projects | extension_projects
1017
1024
)
You can’t perform that action at this time.
0 commit comments