Skip to content

Commit 63f0d94

Browse files
committed
Updated known projects for Windows
1 parent 04ad6e9 commit 63f0d94

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cpython-windows/build.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
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
@@ -117,6 +119,7 @@
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
)

0 commit comments

Comments
 (0)