From b3f1efb3ce2a6df6824fa7a868db52b71e8abbc0 Mon Sep 17 00:00:00 2001 From: Juan D Beltran <48656451+JuanDBeltranP@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:59:14 +0000 Subject: [PATCH] Update setup.py Changing sklearn to scikit-learn to prevent deprecation in the pip commands --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3349f64..c755476 100644 --- a/setup.py +++ b/setup.py @@ -62,5 +62,5 @@ # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['requests', 'plotly', 'numpy', 'pandas', 'bs4', 'scipy', 'sklearn', 'lxml', 'tensorboard', 'tensorboardX'] + install_requires=['requests', 'plotly', 'numpy', 'pandas', 'bs4', 'scipy', 'scikit-learn', 'lxml', 'tensorboard', 'tensorboardX'] )