Commit ee3e317 1 parent 129c4bb commit ee3e317 Copy full SHA for ee3e317
File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -182,15 +182,20 @@ jobs:
182
182
steps :
183
183
- uses : actions/checkout@v4
184
184
185
+ - name : Set up QEMU
186
+ if : runner.os == 'Linux'
187
+ uses : docker/setup-qemu-action@v3
188
+
185
189
- name : Build wheels (Python 3)
186
190
uses : pypa/cibuildwheel@v2.16.5
187
191
with :
188
192
output-dir : wheelhouse
189
193
env :
190
194
CIBW_BUILD : ${{ matrix.python-build }}
191
195
CIBW_SKIP : ' *musllinux*'
196
+ CIBW_ARCHS_LINUX : x86_64 aarch64
192
197
CIBW_MANYLINUX_X86_64_IMAGE : manylinux2014
193
- CIBW_MANYLINUX_I686_IMAGE : manylinux2014
198
+ CIBW_MANYLINUX_AARCH64_IMAGE : manylinux2014
194
199
195
200
- uses : actions/upload-artifact@v3
196
201
with :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ requires = [
7
7
build-backend = " setuptools.build_meta"
8
8
9
9
[tool .cibuildwheel .linux ]
10
- archs = [" x86_64" ]
10
+ archs = [" x86_64" , " aarch64 " ]
11
11
12
12
[tool .cibuildwheel .windows ]
13
13
archs = [" AMD64" ]
You can’t perform that action at this time.
0 commit comments