Skip to content

Commit

Permalink
Be more specific on wheel specs
Browse files Browse the repository at this point in the history
because you are not ready for Python 3.12
and I don't have time to fix it for you
  • Loading branch information
pllim authored Aug 18, 2023
1 parent f2e5255 commit 07324b9
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,30 @@ jobs:
test_command: pytest --pyargs erfa
targets: |
# Linux wheels
- cp*-manylinux_i686
- cp*-manylinux_x86_64
- cp*-musllinux_x86_64
- cp*-manylinux_aarch64
- cp39-manylinux_x86_64
- cp310-manylinux_x86_64
- cp311-manylinux_x86_64
- cp39-musllinux_x86_64
- cp310-musllinux_x86_64
- cp311-musllinux_x86_64
- cp39-manylinux_aarch64
- cp310-manylinux_aarch64
- cp311-manylinux_aarch64
# MacOS X wheels - we deliberately do not build universal2 wheels.
# Note that the arm64 wheels are not actually tested so we
# rely on local manual testing of these to make sure they are ok.
- cp*-macosx_x86_64
- cp*-macosx_arm64
- cp39*macosx_x86_64
- cp310*macosx_x86_64
- cp311*macosx_x86_64
- cp39*macosx_arm64
- cp310*macosx_arm64
- cp311*macosx_arm64
# Windows wheels
- cp*-win*
- cp39*win32
- cp310*win32
- cp311*win32
- cp39*win_amd64
- cp310*win_amd64
- cp311*win_amd64
secrets:
pypi_token: ${{ secrets.pypi_token }}

0 comments on commit 07324b9

Please sign in to comment.