From 964b785eb915d33eb8e3e8bc3171cc42e0692809 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 12 Apr 2026 15:58:03 +0100 Subject: [PATCH] build: raise scipy cap, relax threadpoolctl and SQLAlchemy pins Raise scipy cap from <=1.15.2 to <=1.17.1, remove threadpoolctl upper bound, widen SQLAlchemy from ==2.0.32 to >=2.0.32,<2.1.0. Part of cross-ecosystem dependency sweep (PyAutoLabs/PyAutoConf#87). Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 82db75e18..49d6fff06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,10 +36,10 @@ dependencies = [ "numpydoc>=1.0.0", "h5py>=3.11.0", - "SQLAlchemy==2.0.32", - "scipy<=1.15.2", + "SQLAlchemy>=2.0.32,<2.1.0", + "scipy<=1.17.1", "astunparse==1.6.3", - "threadpoolctl>=3.1.0,<=3.2.0", + "threadpoolctl>=3.1.0", "timeout-decorator==0.5.0", "xxhash<=3.4.1", "networkx==3.1",