From e9557d5b95f89f752759d3ce44abb5685ae59cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Wi=C5=9Bniewski?= Date: Thu, 21 Nov 2024 20:39:10 +0100 Subject: [PATCH] Update SciPy version constraint --- poetry.lock | 2 +- pyproject.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 9c395833..762ddaf3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3384,4 +3384,4 @@ svg = ["drawsvg"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "8f2be3d3c994eabd3d1fb7328d0f6cf31094c2c909ec6c04dbef1fb8d58efb94" +content-hash = "b594b3faa5f94402981bebddc71120ef29a7b8b8a60f6e41b988f589e821764b" diff --git a/pyproject.toml b/pyproject.toml index 656f9841..ef91c692 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,11 @@ pytest-mock = "^3.14.0" opencv-python = "^4.10.0.84" scikit-image = [ { version = ">=0.20.0,<0.22.0", python = ">=3.8,<3.9" }, # Pillow dropped support for 3.8 in 8.0 - { version = ">=0.22.0", python = ">=3.9" }, + { version = ">=0.22.0,<1.0.0", python = ">=3.9" }, +] +scipy = [ + { version = ">=1.10.0,<1.11.0", python = ">=3.8,<3.9" }, # Pillow dropped support for 3.8 in 8.0 + { version = ">=1.11.0,<2.0.0", python = ">=3.9" }, ] [tool.poetry.group.style]