From 13912f3155e2d88371876894594ec1fe6e38d136 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 12 Apr 2026 13:29:16 +0100 Subject: [PATCH] fix: bump scipy cap from <=1.14.0 to <=1.15.2 The hard cap at 1.14.0 caused pip to backtrack into source builds during PyAutoGalaxy CI when jax pulled in scipy 1.17.1 and the resolver could not find compatible pre-built wheels after downgrade. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aeaf8927..b3fa629c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "decorator>=4.0.0", "dill>=0.3.1.1", "matplotlib>=3.7.0", - "scipy<=1.14.0", + "scipy<=1.15.2", "scikit-image<=0.24.0", "scikit-learn<=1.5.1", "tqdm"