From 76a759cbc9e6e82efe07f72233bb194248acc9b0 Mon Sep 17 00:00:00 2001 From: David Rubinstein Date: Thu, 29 Feb 2024 15:40:37 -0500 Subject: [PATCH] unpin scikit learn --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96615b1..e23e7a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,12 +24,12 @@ dependencies = [ "onnxruntime; platform_system == 'Windows' and python_version < '3.11'", "pretty_midi>=0.2.9", "resampy>=0.2.2", + "scikit-learn", "scipy>=1.4.1", - "tflite-runtime; platform_system == 'Linux' and python_version < '3.11'", - "typing_extensions", "tensorflow>=2.4.1; platform_system != 'Darwin' and python_version >= '3.11'", "tensorflow-macos>=2.4.1; platform_system == 'Darwin' and python_version >= '3.11'", - "scikit-learn<=1.1.2" + "tflite-runtime; platform_system == 'Linux' and python_version < '3.11'", + "typing_extensions", ] [metadata]