From 77bdd2b9ba101f66f6d8b9e0ac178af2ce610cb6 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 12 Apr 2026 13:29:15 +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 9f55aeeb0..82db75e18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ dependencies = [ "h5py>=3.11.0", "SQLAlchemy==2.0.32", - "scipy<=1.14.0", + "scipy<=1.15.2", "astunparse==1.6.3", "threadpoolctl>=3.1.0,<=3.2.0", "timeout-decorator==0.5.0",