Skip to content

Commit 3bcc84e

Browse files
committed
FIX: Wrong
1 parent d6bc040 commit 3bcc84e

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

.github/workflows/wheels.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,31 +59,27 @@ jobs:
5959
matrix:
6060
buildplat:
6161
- [ubuntu-latest, musllinux_x86_64]
62+
- [ubuntu-latest, manylinux_x86_64]
6263
- [ubuntu-24.04-arm64, manylinux_aarch64]
63-
- [macos-15-intel, macosx_x86_64] # native Intel hardware
64+
- [macos-latest, macosx_arm64]
65+
- [macos-15-intel, macosx_x86_64]
6466
- [windows-latest, win_amd64]
65-
python: ["cp310", "cp311"]
66-
include:
67-
# Manylinux and arm64 builds (on native hardware) are cheap, do all in one
68-
- { buildplat: ["ubuntu-latest", "manylinux_x86_64"], python: "*" }
69-
- { buildplat: ["macos-14", "macosx_arm64"], python: "*" }
7067

7168
steps:
7269
- uses: actions/checkout@v5
7370
with:
7471
fetch-depth: 0
7572

76-
- name: Install the latest version of uv
77-
uses: astral-sh/setup-uv@v6
78-
7973
- name: Build wheel(s)
80-
run: uvx cibuildwheel
81-
env:
82-
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
74+
uses: pypa/[email protected]
75+
with:
76+
env:
77+
CIBW_BUILD: "cp*-${{ matrix.buildplat[1] }}"
78+
CIBW_SKIP: "cp312-* cp313-* cp314-*"
8379

8480
- uses: actions/upload-artifact@v5
8581
with:
86-
name: ${{ matrix.python == '*' && 'all' || matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}-dist
82+
name: ${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}-dist
8783
path: ./wheelhouse/*.whl
8884

8985
test-sdist:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ build = "cp310-* cp311-*"
6969
# 64-bit builds only; 32-bit builds seem pretty niche these days, so
7070
# don't bother unless someone asks
7171
archs = ["native"]
72-
before-build = "pip install auditwheel"
72+
before-build = "pip install abi3audit"
7373
test-requires = [
7474
"pytest",
7575
"nitime[full]", # Enable all optional behavior

0 commit comments

Comments
 (0)