Skip to content

Commit cdc7644

Browse files
authored
update cibuildwheel to v2.23.3 (#638)
1 parent 868aa2c commit cdc7644

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/wheel.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@ jobs:
99
build_wheels:
1010
strategy:
1111
matrix:
12-
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
12+
# macos-13 is for intel
13+
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "macos-13", "macos-latest"]
1314
runs-on: ${{ matrix.os }}
1415
name: Build wheels on ${{ matrix.os }}
1516

1617
steps:
17-
- name: Set up QEMU
18-
if: runner.os == 'Linux'
19-
uses: docker/setup-qemu-action@v3
20-
with:
21-
platforms: all
22-
2318
- uses: actions/checkout@v4
2419
- uses: actions/setup-python@v5
2520
with:
@@ -32,12 +27,10 @@ jobs:
3227
make cython
3328
3429
- name: Build
35-
uses: pypa/cibuildwheel@v2.20.0
30+
uses: pypa/cibuildwheel@v2.23.3
3631
env:
3732
CIBW_TEST_REQUIRES: "pytest"
3833
CIBW_TEST_COMMAND: "pytest {package}/test"
39-
CIBW_ARCHS_LINUX: auto aarch64
40-
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
4134
CIBW_SKIP: "pp* cp38-macosx_*"
4235

4336
- name: Build sdist

0 commit comments

Comments
 (0)