Skip to content

Commit e5981f9

Browse files
authored
Fix CIBW_BUILD argument for Python 3.12 (#470)
I noticed the `-*-*` in the CIBW_BUILD for 3.12. Perhaps this could fix the missing wheels 3.12? Fixes #469.
1 parent 9ca4b21 commit e5981f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
CIBW_ARCHS_LINUX: x86_64 i686 aarch64
2222
CIBW_ARCHS_MACOS: x86_64 universal2
2323
CIBW_ARCHS_WINDOWS: AMD64 x86 ARM64
24-
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*-* cp313-*"
24+
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
2525

2626
steps:
2727
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)