Skip to content

Commit cff40b2

Browse files
committed
Move _zstd to built-in module list
1 parent 63f0d94 commit cff40b2

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

cpython-windows/build.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@
7272
},
7373
"_overlapped": {},
7474
"_multiprocessing": {},
75-
# Added in 3.14
76-
"_remote_debugging": {},
75+
"_remote_debugging": {
76+
# Added in 3.14
77+
"ignore_missing": True
78+
},
7779
"_socket": {},
7880
"_sqlite3": {"shared_depends": ["sqlite3"]},
7981
# See the one-off calls to copy_link_to_lib() and elsewhere to hack up
@@ -92,6 +94,10 @@
9294
"ignore_missing": True,
9395
},
9496
"_zoneinfo": {"ignore_missing": True},
97+
"_zstd": {
98+
# Added in 3.14
99+
"ignore_missing": True
100+
},
95101
"pyexpat": {},
96102
"select": {},
97103
"unicodedata": {},
@@ -1015,10 +1021,6 @@ def collect_python_build_artifacts(
10151021
if zlib_entry == "zlib-ng":
10161022
depends_projects |= {"zlib-ng"}
10171023

1018-
# zstd is a dependency for Python 3.14+.
1019-
if python_majmin == "314":
1020-
depends_projects |= {"_zstd"}
1021-
10221024
known_projects = (
10231025
ignore_projects | other_projects | depends_projects | extension_projects
10241026
)

0 commit comments

Comments
 (0)