Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow python 3.13 #8864

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,12 @@ jobs:
cache-path: /tmp/data/crds_cache
cache-key: crds-${{ needs.crds_context.outputs.context }}
envs: |
- linux: py310-oldestdeps-xdist-cov
- linux: py311-oldestdeps-xdist-cov
pytest-results-summary: true
- linux: py310-xdist
- linux: py311-xdist
pytest-results-summary: true
- macos: py311-xdist
pytest-results-summary: true
- linux: py311-xdist-cov
- linux: py312-xdist-cov
coverage: codecov
pytest-results-summary: true
- linux: py312-xdist
- linux: py313-xdist
- macos: py312-xdist
pytest-results-summary: true
6 changes: 3 additions & 3 deletions .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
cache-path: /tmp/crds_cache
cache-key: crds-${{ needs.crds_context.outputs.context }}
envs: |
- macos: py310-xdist
- macos: py312-xdist
- linux: py311-pyargs-xdist
- macos: py311-xdist
- macos: py313-xdist
- linux: py312-pyargs-xdist
- linux: py3-pyargs-xdist

8 changes: 4 additions & 4 deletions .github/workflows/tests_devdeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ jobs:
pytest-results-summary: true
- macos: py3-xdist
pytest-results-summary: true
- linux: py311-stdevdeps-xdist
- linux: py312-stdevdeps-xdist
pytest-results-summary: true
- macos: py311-stdevdeps-xdist
- macos: py312-stdevdeps-xdist
pytest-results-summary: true
- linux: py3-stdevdeps-xdist
pytest-results-summary: true
- macos: py3-stdevdeps-xdist
pytest-results-summary: true
- linux: py311-devdeps-xdist
- linux: py312-devdeps-xdist
pytest-results-summary: true
- macos: py311-devdeps-xdist
- macos: py312-devdeps-xdist
pytest-results-summary: true
- linux: py3-devdeps-xdist
pytest-results-summary: true
Expand Down
1 change: 1 addition & 0 deletions changes/8864.general.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 3.10 and add support for Python 3.13.
7 changes: 4 additions & 3 deletions 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,<3.13"
requires-python = ">=3.11"
authors = [
{ name = "JWST calibration pipeline developers" },
]
Expand All @@ -13,9 +13,9 @@ classifiers = [
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"asdf>=3.3,<5",
Expand All @@ -34,7 +34,8 @@ dependencies = [
"scikit-image>=0.20.0",
"scipy>=1.14.1",
"spherical-geometry>=1.2.22",
"stcal>=1.11.0,<1.12.0",
# "stcal>=1.11.0,<1.12.0",
"stcal @ git+https://github.com/spacetelescope/stcal.git@main",
"stdatamodels>=2.2.0,<2.3.0",
"stpipe>=0.8.0,<0.9.0",
"stsci.imagestats>=1.6.3",
Expand Down
Loading