From 8597ef0a1c0c6c58252fa6aaf92374761fe6aa80 Mon Sep 17 00:00:00 2001 From: ccarrizosa Date: Sun, 10 Nov 2024 15:54:16 +0100 Subject: [PATCH] Limit numpy versions to <2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9497d08..f1ac123 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ authors = [ dependencies = [ "librosa>=0.10.1", "matplotlib>=3.7.1", - "numpy>=1.23.5", + "numpy>=1.23.5,<2", "pandas>=1.5.3", "scikit-learn>=1.2.2", "scipy>=1.10.1",