From de392281f9a3131226602c958f3d02f83e867242 Mon Sep 17 00:00:00 2001 From: Rohan Prasad <63618470+rohanprasad12@users.noreply.github.com> Date: Wed, 14 Dec 2022 09:37:15 -0500 Subject: [PATCH] chore: update to scikit-learn sklearn is being deprecated (see: https://pypi.org/project/sklearn/) and this dependency should be updated to point to scikit-learn to avoid installation failures during brownout/deprecation windows. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6d3da28..903ce81 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ install_requires=[ 'numpy >= 1.11.1', 'pandas', - 'sklearn', + 'scikit-learn', 'tensorflow', 'tensorflow-probability', 'tqdm',