From 586d43d258cce9ce24974db752b7df8cbb010931 Mon Sep 17 00:00:00 2001 From: Ryan Huang Date: Sun, 6 Sep 2020 22:51:07 +0000 Subject: [PATCH] Change sklearn to scikit-learn As mentioned on the PyPI page (https://pypi.org/project/sklearn/), the "sklearn" package is just an alias for "scikit-learn". This saves the installation of an empty package. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 01a923f..39e8765 100644 --- a/setup.py +++ b/setup.py @@ -124,7 +124,7 @@ def package_files(directory): 'scipy', 'cython >= ' + min_cython_ver, 'fastdtw', - 'sklearn', + 'scikit-learn', 'pysptk >= 0.1.17', 'tqdm', ]