Skip to content

Commit

Permalink
[SCSB-170] pin Python<3.13 (spacetelescope#8703)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett authored Aug 14, 2024
1 parent a232ef9 commit 38ea9b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
with:
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
targets: |
# Linux wheels (except python 313)
- cp31[!3]-manylinux_x86_64
# MacOS wheels (except python 313)
- cp31[!3]-macosx_x86_64
# MacOS arm64 wheels (except python 313)
- cp31[!3]-macosx_arm64
# Linux wheels
- cp3*-manylinux_x86_64
# MacOS wheels
- cp3*-macosx_x86_64
# MacOS arm64 wheels
- cp3*-macosx_arm64
sdist: true
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"
secrets:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "jwst"
description = "Library for calibration of science observations from the James Webb Space Telescope"
requires-python = ">=3.10"
requires-python = ">=3.10,<3.13"
authors = [
{ name = "JWST calibration pipeline developers" },
]
Expand Down

0 comments on commit 38ea9b7

Please sign in to comment.