Skip to content

Commit 89f126a

Browse files
authored
don't build for python 3.13 (#8691)
2 parents c9d3eb5 + f6c4095 commit 89f126a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
with:
2626
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
2727
targets: |
28-
# Linux wheels
29-
- cp3*-manylinux_x86_64
30-
# MacOS wheels
31-
- cp3*-macosx_x86_64
32-
# Until we have arm64 runners, we can't automatically test arm64 wheels
33-
- cp3*-macosx_arm64
28+
# Linux wheels (except python 313)
29+
- cp31[!3]-manylinux_x86_64
30+
# MacOS wheels (except python 313)
31+
- cp31[!3]-macosx_x86_64
32+
# MacOS arm64 wheels (except python 313)
33+
- cp31[!3]-macosx_arm64
3434
sdist: true
3535
test_command: python -c "from jwst.lib import winclip; from jwst.cube_build import cube_match_internal, cube_match_sky_pointcloud, cube_match_sky_driz, blot_median; from jwst.straylight import calc_xart"
3636
secrets:

0 commit comments

Comments
 (0)