Skip to content

Commit

Permalink
Eliminate Python 3.13 from the target list (#1864)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlpstsci authored Aug 13, 2024
1 parent cd6f166 commit d7a5b97
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ jobs:
with:
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
targets: |
# Linux wheels
- cp3*-manylinux_x86_64
# MacOS wheels
- cp3*-macosx_x86_64
# Linux wheels (except python 313)
- cp31[!3]-manylinux_x86_64
# MacOS wheels (except python 313)
- cp31[!3]-macosx_x86_64
# Until we have arm64 runners, we can't automatically test arm64 wheels
# - cp3*-macosx_arm64
# (except python 313)
# - cp31[!3]-macosx_arm64
sdist: true
test_command: python -c "from drizzlepac import cdriz"
secrets:
Expand Down

0 comments on commit d7a5b97

Please sign in to comment.