We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5057d98 commit 9b14e6fCopy full SHA for 9b14e6f
.github/workflows/wheels.yml
@@ -148,15 +148,16 @@ jobs:
148
with:
149
python-version: "3.13"
150
151
+ - name: Pyodide setup
152
+ if: ${{ matrix.buildplat[1] == 'pyodide_wasm32' }}
153
+ run: |
154
+ echo "CIBW_PLATFORM=pyodide" >> "$GITHUB_ENV"
155
+
156
- name: Build wheel
157
env:
158
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
159
SRC: ${{ github.workspace }}/numpy-src
160
run: |
- if [[ $CIBW_BUILD == *pyodide_wasm32 ]]; then
- # specifying CIBW_PLATFORM is required to get the wasm build to work
- export CIBW_PLATFORM="pyodide"
- fi
161
python -m pip install cibuildwheel==3.1.1
162
python -m cibuildwheel numpy-src --config-file cibuildwheel.toml --output-dir ./dist
163
0 commit comments