From 60d0148865ca40a87e7df31112e65320d826f09b Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 12 Apr 2026 15:58:05 +0100 Subject: [PATCH] build: raise caps on scipy, astropy, scikit-image, scikit-learn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit scipy <=1.15.2 → <=1.17.1, astropy <=6.1.2 → <=7.2.0, scikit-image <=0.24.0 → <=0.26.0, scikit-learn <=1.5.1 → <=1.8.0. Part of cross-ecosystem dependency sweep (PyAutoLabs/PyAutoConf#87). Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b3fa629c..99b6e20f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,13 +23,13 @@ classifiers = [ keywords = ["cli"] dependencies = [ "autoconf", - "astropy>=5.0,<=6.1.2", + "astropy>=5.0,<=7.2.0", "decorator>=4.0.0", "dill>=0.3.1.1", "matplotlib>=3.7.0", - "scipy<=1.15.2", - "scikit-image<=0.24.0", - "scikit-learn<=1.5.1", + "scipy<=1.17.1", + "scikit-image<=0.26.0", + "scikit-learn<=1.8.0", "tqdm" ]