From c914e6cb36b46b44ad5c35c57b726478f29049f4 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Thu, 12 Dec 2024 14:34:09 -0500 Subject: [PATCH] fix(pyproject): avoid broken pybsm version Also update scikit-learn closes #150 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a60829d..3c53e1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,8 +30,8 @@ dependencies = [ "accelerate", "numpy", "Pillow", - "pybsm>=0.6", - "scikit-learn==1.5.2", + "pybsm>=0.6,<=0.9.0", + "scikit-learn>=1.6.0", "smqtk_image_io", "tabulate", "timm>=1.0.3",