From f3fb3e78c0ef254c4a330613108cbaaad0b31d77 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 8 Oct 2024 08:35:58 -0400 Subject: [PATCH] allow python 3.13 --- .github/workflows/ci.yml | 7 +++---- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dceff2eff..40637e5962 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,11 +61,10 @@ jobs: - linux: py310-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 coverage: codecov pytest-results-summary: true - linux: py312-xdist + - linux: py313-xdist + - macos: py311-xdist + pytest-results-summary: true diff --git a/pyproject.toml b/pyproject.toml index a944d7ba44..d72a6a6a2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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.10" authors = [ { name = "JWST calibration pipeline developers" }, ]