Skip to content

Commit d36281f

Browse files
committed
add ubuntu-24.04-arm runner
1 parent c492ef5 commit d36281f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/wheel.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,17 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-latest, windows-latest, macos-latest]
31+
os: [ubuntu-latest, windows-latest, macos-latest, ubuntu-24.04-arm]
3232
runs-on: ${{ matrix.os }}
3333
steps:
3434
- uses: actions/checkout@v4
35-
# On an Linux Intel runner with qemu installed, build Intel and ARM wheels
36-
# See: https://cibuildwheel.pypa.io/en/stable/options/#archs
37-
- name: Set up QEMU
38-
if: runner.os == 'Linux'
39-
uses: docker/setup-qemu-action@v3
4035
- name: Build wheels
4136
uses: pypa/[email protected]
4237
env:
4338
CIBW_BUILD: cp3*-*
4439
CIBW_SKIP: "*_i686 *_ppc64le *_s390x *_universal2 *-musllinux_*"
4540
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
46-
CIBW_ARCHS_LINUX: x86_64 aarch64
41+
CIBW_ARCHS_LINUX: auto
4742
CIBW_ARCHS_MACOS: x86_64 arm64
4843
CIBW_ARCHS_WINDOWS: AMD64
4944
# Include free-threaded support

0 commit comments

Comments
 (0)