Skip to content

Commit ba3949b

Browse files
committed
Build aarch64 wheels without qemu emulation
GitHub actions now features native `aarch64` runners, so use them to build our wheels. We bump the Python version to 3.11 as `cibuildwheel` will soon require it.
1 parent c0134de commit ba3949b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ jobs:
110110
arch: i686
111111
- os: ubuntu-latest
112112
arch: x86_64
113+
- os: ubuntu-24.04-arm
114+
arch: aarch64
113115
- os: windows-latest
114116
arch: AMD64
115117
- os: windows-latest
@@ -118,10 +120,7 @@ jobs:
118120
- uses: actions/checkout@v4
119121
- uses: actions/setup-python@v5
120122
with:
121-
python-version: 3.9
122-
- name: Install QEMU
123-
if: matrix.os == 'ubuntu-latest'
124-
uses: docker/setup-qemu-action@v3
123+
python-version: 3.11
125124
- name: Build wheels
126125
env:
127126
CIBW_ARCHS: ${{ matrix.arch }}

0 commit comments

Comments
 (0)