Skip to content

Commit 2f5bf50

Browse files
committed
Use cibw_id to remove * from wheel names
1 parent a15f943 commit 2f5bf50

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
CIBW_TEST_SKIP: "*macosx*arm64*"
1414
# Building for musllinux and aarch64 takes way too much time.
1515
# Moreover, NumPy is not providing musllinux for x86_64 either, so it's not worth it.
16-
# CIBW_SKIP: "*musllinux*aarch64* *musllinux*x86_64*"
16+
CIBW_SKIP: "*musllinux*aarch64* *musllinux*x86_64*"
1717

1818
jobs:
1919
build_wheels:
@@ -31,7 +31,9 @@ jobs:
3131
matrix:
3232
os: [ubuntu-latest, windows-latest, macos-latest]
3333
arch: [x86_64, aarch64]
34-
cibw_build: ["cp310", "cp311", "cp312", "cp313", "cp313t"]
34+
cibw_build: [ "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp313t-*" ]
35+
# These are necessary to avoid * in wheel names, which are not allowed in GitHub Actions
36+
cibw_id: [ "cp310", "cp311", "cp312", "cp313", "cp313t" ]
3537
p_ver: ["3.10-3.13+3.13t"]
3638
exclude:
3739
- os: windows-latest

0 commit comments

Comments
 (0)