From a2c61c9c854ba60c7c1cf203dab2d76b4d186225 Mon Sep 17 00:00:00 2001 From: Thor Whalen Date: Mon, 30 Mar 2020 10:05:34 -0400 Subject: [PATCH] Update setup.py Updating requirement to 'joblib >= 0.14' since `joblib 0.12` produces a `TypeError` (on `iOS 10.14.6`, with `python 3.82` at least). See [issue](https://github.com/librosa/librosa/issues/1090). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6c6be68652..cce5fa5caf 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'numpy >= 1.15.0', 'scipy >= 1.0.0', 'scikit-learn >= 0.14.0, != 0.19.0', - 'joblib >= 0.12', + 'joblib >= 0.14', 'decorator >= 3.0.0', 'resampy >= 0.2.2', 'numba >= 0.43.0',