Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions python/scripts/build-wheels.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ const pythonDir = dirname(__dirname);
const repoRoot = dirname(pythonDir);

// Platform mappings: npm package suffix -> [wheel platform tag, binary name]
// Based on Node 24.11 binaries being included in the wheels
const PLATFORMS = {
"linux-x64": ["manylinux_2_17_x86_64", "copilot"],
"linux-arm64": ["manylinux_2_17_aarch64", "copilot"],
"linux-x64": ["manylinux_2_28_x86_64", "copilot"],
"linux-arm64": ["manylinux_2_28_aarch64", "copilot"],
"darwin-x64": ["macosx_10_9_x86_64", "copilot"],
"darwin-arm64": ["macosx_11_0_arm64", "copilot"],
"win32-x64": ["win_amd64", "copilot.exe"],
Expand Down
Loading