Skip to content

Commit

Permalink
Fix CIBW_BUILD argument for Python 3.12 (#470)
Browse files Browse the repository at this point in the history
I noticed the `-*-*` in the CIBW_BUILD for 3.12. Perhaps this could fix
the missing wheels 3.12?

Fixes #469.
  • Loading branch information
mpuhacz authored Aug 6, 2024
1 parent 9ca4b21 commit e5981f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
CIBW_ARCHS_LINUX: x86_64 i686 aarch64
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_ARCHS_WINDOWS: AMD64 x86 ARM64
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*-* cp313-*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e5981f9

Please sign in to comment.