Skip to content

Commit 02b54f0

Browse files
committed
BLD: go through cibuildwheel action
1 parent 7afb357 commit 02b54f0

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

.github/workflows/wheels.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -144,23 +144,33 @@ jobs:
144144
fi
145145
146146
# Used to run cibuildwheel
147-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
148-
with:
149-
python-version: "3.14"
150-
allow-prereleases: true
147+
# - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
148+
# with:
149+
# python-version: "3.14"
150+
# allow-prereleases: true
151151

152152
- name: Pyodide setup
153153
if: ${{ matrix.buildplat[1] == 'pyodide_wasm32' }}
154154
run: |
155155
echo "CIBW_PLATFORM=pyodide" >> "$GITHUB_ENV"
156156
157-
- name: Build wheel
157+
- name: Build wheels
158+
uses: pypa/[email protected]
158159
env:
159160
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
160161
SRC: ${{ github.workspace }}/numpy-src
161-
run: |
162-
python -m pip install cibuildwheel==3.1.4
163-
python -m cibuildwheel numpy-src --config-file cibuildwheel.toml --output-dir ./dist
162+
with:
163+
package-dir: numpy-src
164+
output-dir: dist
165+
config-file: cibuildwheel.toml
166+
167+
# - name: Build wheel
168+
# env:
169+
# CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
170+
# SRC: ${{ github.workspace }}/numpy-src
171+
# run: |
172+
# python -m pip install cibuildwheel==3.1.4
173+
# python -m cibuildwheel numpy-src --config-file cibuildwheel.toml --output-dir ./dist
164174

165175
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
166176
with:

0 commit comments

Comments
 (0)