From e1f02822ba96e4f7e41fc46cbe8fb3ec3d73c168 Mon Sep 17 00:00:00 2001 From: Stephen Crowell Date: Tue, 4 Jun 2024 13:56:10 -0400 Subject: [PATCH] Add numpy pin for python 3.12 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bb2e14a..4f5788b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,8 @@ python = "^3.8" # https://stackoverflow.com/questions/77431252/why-doesnt-poetry-select-the-good-version-of-my-dependency numpy = [ {version = ">=1.22,<1.25", python = "~3.8"}, # CVE-2021-34141 - {version = ">=1.22,^1.25", python = ">=3.9,<3.13" } # CVE-2021-34141 + {version = ">=1.22,^1.25", python = ">=3.9,<3.12" }, # CVE-2021-34141 + {version = "^1.26", python = ">=3.12,<3.13" } ] scikit-image = [ # Hinge because minimum support 0.20.0 for py3.11