From 6a6640e3f8fc9d63dbab17bfa1fe9501953e3e6f Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Fri, 15 Dec 2023 11:12:12 -0500 Subject: [PATCH] pin Python below 3.12 and Numpy below 2.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed7d5d8047..2818a89a19 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.9" +requires-python = ">=3.9,<3.12" authors = [ { name = "JWST calibration pipeline developers" }, ] @@ -26,7 +26,7 @@ dependencies = [ "crds>=11.17.14", "drizzle>=1.14.3,<1.15.0", "gwcs>=0.20.0,<0.21.0", - "numpy>=1.22", + "numpy>=1.22,<2.0", "opencv-python-headless>=4.6.0.66", "photutils>=1.4.0", "psutil>=5.7.2",