Skip to content

Commit 55d2fb0

Browse files
committed
FIX: Native
1 parent 2b0e590 commit 55d2fb0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ jobs:
6363
- [macos-13, macosx_x86_64] # native Intel hardware
6464
- [windows-latest, win_amd64]
6565
python: ["cp38", "cp39", "cp310", "cp311", "cp312"]
66+
# No NumPy wheels on 3.8 aarch64
67+
exclude:
68+
- python: "cp38"
69+
buildplat: [ubuntu-latest, manylinux_aarch64]
6670
include:
6771
# Manylinux and arm64 builds (on native hardware) are cheap, do all in one
6872
- { buildplat: ["ubuntu-latest", "manylinux_x86_64"], python: "*" }

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ skip = "pp* cp38-*_aarch64"
6161

6262
# 64-bit builds only; 32-bit builds seem pretty niche these days, so
6363
# don't bother unless someone asks
64-
archs = ["auto64", "aarch64"]
64+
archs = ["native"]
65+
66+
[tool.cibuildwheel.linux]
67+
archs = ["x86_64", "aarch64"]
6568

6669
[tool.codespell]
6770
skip = '.git,*.pdf,*.svg,go.sum,*.css'

0 commit comments

Comments
 (0)