From ab3357522ae16c2763aa56ed30a724508696d498 Mon Sep 17 00:00:00 2001 From: Philip Loche Date: Wed, 11 Jun 2025 16:40:46 +0200 Subject: [PATCH] Pin scikit-learn version to <1.7.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9cd6521df..65b945518 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,8 +38,8 @@ classifiers = [ "Topic :: Scientific/Engineering", ] dependencies = [ - "scikit-learn >= 1.6.0", - "scipy >= 1.15.0", # explicit to adhere to scikit-learn dependencies + "scikit-learn >= 1.6, < 1.7", + "scipy >= 1.15", # explicit to adhere to scikit-learn dependencies ] dynamic = ["version"]