Skip to content

Commit cd29093

Browse files
committed
fixup! MNT: move most of cibuildwheel config to pyproject.toml
1 parent 07d08b3 commit cd29093

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# - On PPs, omit musllinux for speed
4949
# - On PRs, run just oldest and newest Python versions
5050
run: |
51-
CIBW_SKIP="cp310-win_arm64* cp311-* cp312-* cp313-* *musllinux*"
51+
CIBW_SKIP="cp311-* cp312-* cp313-* *musllinux*"
5252
echo "Setting CIBW_SKIP=$CIBW_SKIP"
5353
5454
- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ ignore = [
111111
build-verbosity = 1
112112
skip = [
113113
"*musllinux_aarch64*",
114+
# Skipped due to unavailability of Python binary and NumPy for Win-ARM64
115+
"cp310-win_arm64",
114116
]
115117

116118
test-skip = [
117119
# Emulated testing is slow, so trust that the Python 3.14 test is good enough on aarch64
118120
# (takes about 5 minutes per wheel to build, and 5 minutes to test)
119121
"cp3{10,11,12,13}-*_aarch64",
120-
# Skipped due to unavailability of Python binary and NumPy for Win-ARM64
121-
"cp310-win_arm64",
122122
]
123123
test-groups = "dev"
124124
test-command = [

0 commit comments

Comments
 (0)