Skip to content

Commit 76b87c1

Browse files
author
Test User
committed
reskip qemu, cleanup skip statements
1 parent 406f5e0 commit 76b87c1

3 files changed

Lines changed: 3 additions & 18 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- windows-latest
6262
- ubuntu-24.04-arm
6363
cibw_skip:
64-
- '*-win32 cp3{10}-win_arm64 cp313-musllinux_i686'
64+
- '*-win32 cp310-win_arm64 cp313-musllinux_i686'
6565
arch:
6666
- auto
6767
steps:
@@ -72,11 +72,6 @@ jobs:
7272
if: ${{ startsWith(matrix.os, 'windows-') }}
7373
with:
7474
arch: ${{ contains(matrix.os, 'arm') && 'arm64' || 'x64' }}
75-
- name: Set up QEMU
76-
uses: docker/setup-qemu-action@v3.7.0
77-
if: runner.os == 'Linux' && matrix.arch != 'auto'
78-
with:
79-
platforms: all
8075
- name: Build binary wheels
8176
uses: pypa/cibuildwheel@v3.3.1
8277
with:

.github/workflows/tests.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
- windows-latest
133133
- ubuntu-24.04-arm
134134
cibw_skip:
135-
- '*-win32 cp3{10}-win_arm64 cp313-musllinux_i686'
135+
- '*-win32 cp310-win_arm64 cp313-musllinux_i686'
136136
arch:
137137
- auto
138138
steps:
@@ -143,11 +143,6 @@ jobs:
143143
if: ${{ startsWith(matrix.os, 'windows-') }} && ${{ contains(matrix.cibw_skip, '*-win32') }}
144144
with:
145145
arch: ${{ contains(matrix.os, 'arm') && 'arm64' || 'x64' }}
146-
- name: Set up QEMU
147-
uses: docker/setup-qemu-action@v3.7.0
148-
if: runner.os == 'Linux' && matrix.arch != 'auto'
149-
with:
150-
platforms: all
151146
- name: Build binary wheels
152147
uses: pypa/cibuildwheel@v3.3.1
153148
with:
@@ -374,11 +369,6 @@ jobs:
374369
if: ${{ startsWith(matrix.os, 'windows-') }}
375370
with:
376371
arch: ${{ contains(matrix.os, 'arm') && 'arm64' || 'x64' }}
377-
- name: Set up QEMU
378-
uses: docker/setup-qemu-action@v3.7.0
379-
if: runner.os == 'Linux' && matrix.arch != 'auto'
380-
with:
381-
platforms: all
382372
- name: Setup Python
383373
uses: actions/setup-python@v5.6.0
384374
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
3939
# `build_binpy_wheels`, can we deduplicate and just use that?
4040
# Or do we need these when building wheels for release, which may run on
4141
# separate pipelines?
42-
skip = ["*-win32", "cp3{10}-win_arm64", "cp313-musllinux_i686"]
42+
skip = ["*-win32", "cp310-win_arm64", "cp313-musllinux_i686"]
4343
build-frontend = "build"
4444
build-verbosity = 1
4545
test-command = "python {project}/run_tests.py"

0 commit comments

Comments
 (0)