Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- os: macos-15-intel
archs: "x86_64_iphonesimulator"
platform: "ios"
- os: ubuntu-24.04
archs: "wasm32"
platform: "pyodide"

steps:
- name: Disable git autocrlf
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
enable = ["pypy", "pypy-eol", "graalpy"]
enable = ["pypy", "pypy-eol", "graalpy", "pyodide-prerelease", "pyodide-eol"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In cibuildwheel, the correct identifier to enable Pyodide builds is "pyodide". The identifiers "pyodide-prerelease" and "pyodide-eol" are not supported by cibuildwheel and may cause configuration errors or prevent Pyodide wheels from being built. Please update the enable list to use "pyodide".

Suggested change
enable = ["pypy", "pypy-eol", "graalpy", "pyodide-prerelease", "pyodide-eol"]
enable = ["pypy", "pypy-eol", "graalpy", "pyodide"]

build-frontend = "build[uv]"

[[tool.cibuildwheel.overrides]]
Expand Down
Loading