From 04030e91f40aec60181e5a54ea7ce0dc6665cf50 Mon Sep 17 00:00:00 2001 From: David Rubinstein Date: Tue, 16 Apr 2024 13:19:58 -0400 Subject: [PATCH] Fix ML Libs version pins --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 51bb5a9..f6486b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", ] dependencies = [ - "coremltools; platform_system == 'Darwin' and python_version < '3.11'", + "coremltools; platform_system == 'Darwin'", "librosa>=0.8.0", "mir_eval>=0.6", "numpy>=1.18", @@ -27,7 +27,7 @@ dependencies = [ "scikit-learn", "scipy>=1.4.1", "tensorflow>=2.4.1,<2.16; platform_system != 'Darwin' and python_version >= '3.11'", - "tensorflow-macos>=2.4.1; platform_system == 'Darwin' and python_version >= '3.11'", + "tensorflow-macos>=2.4.1,<2.16; platform_system == 'Darwin'", "tflite-runtime; platform_system == 'Linux' and python_version < '3.11'", "typing_extensions", ]