Skip to content

Commit c4b3b36

Browse files
brettcannonCopilot
andauthored
Bump manylinux tag to glibc 2.28 for Node 24.11 (#428)
* Initial plan * Update manylinux tag from 2_17 to 2_28 for Node 24.11 glibc requirement Co-authored-by: brettcannon <54418+brettcannon@users.noreply.github.com> * Add comment explaining Node 24.11 dependency for platform tags Co-authored-by: brettcannon <54418+brettcannon@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent c884332 commit c4b3b36

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/scripts/build-wheels.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ const pythonDir = dirname(__dirname);
3636
const repoRoot = dirname(pythonDir);
3737

3838
// Platform mappings: npm package suffix -> [wheel platform tag, binary name]
39+
// Based on Node 24.11 binaries being included in the wheels
3940
const PLATFORMS = {
40-
"linux-x64": ["manylinux_2_17_x86_64", "copilot"],
41-
"linux-arm64": ["manylinux_2_17_aarch64", "copilot"],
41+
"linux-x64": ["manylinux_2_28_x86_64", "copilot"],
42+
"linux-arm64": ["manylinux_2_28_aarch64", "copilot"],
4243
"darwin-x64": ["macosx_10_9_x86_64", "copilot"],
4344
"darwin-arm64": ["macosx_11_0_arm64", "copilot"],
4445
"win32-x64": ["win_amd64", "copilot.exe"],

0 commit comments

Comments
 (0)