Skip to content

Commit 816043c

Browse files
committed
MAINT: switch to manual cibuildwheel invocation
1 parent 020648a commit 816043c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,17 @@ jobs:
130130
echo "CIBW_ENVIRONMENT_MACOS=$CIBW PKG_CONFIG_PATH=$PKG_CONFIG_PATH DYLD_LIBRARY_PATH=$DYLD" >> "$GITHUB_ENV"
131131
fi
132132
133-
- name: Build wheels
134-
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
133+
# Used to run cibuildwheel
134+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
135+
with:
136+
python-version: "3.13"
137+
138+
- name: Build wheel
135139
env:
136140
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
141+
run: |
142+
python -m pip install cibuildwheel==3.0.1
143+
python -m cibuildwheel numpy-src --config-file cibuildwheel.toml --output-dir ./wheelhouse
137144
138145
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
139146
with:

0 commit comments

Comments
 (0)