From 3edba5df5c6715c35a41aa439ce930c21030bf4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 22:07:10 +0000 Subject: [PATCH] Update scikit-learn requirement from <1.1,>=0.23 to >=0.23,<1.3 Updates the requirements on [scikit-learn](https://github.com/scikit-learn/scikit-learn) to permit the latest version. - [Release notes](https://github.com/scikit-learn/scikit-learn/releases) - [Commits](https://github.com/scikit-learn/scikit-learn/compare/0.23.0...1.2.0) --- updated-dependencies: - dependency-name: scikit-learn dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9060b734..4c4ad9a2 100644 --- a/setup.py +++ b/setup.py @@ -24,12 +24,12 @@ ] other_deps = [ 'pandas>=1.1,<1.5', - 'scikit-learn>=0.23,<1.1', + 'scikit-learn>=0.23,<1.3', ] pytorch_deps = [ 'opacus>=1.0.0,<1.1', 'Pillow>=8.0.1,<9.1.0', - 'scikit-learn>=0.23,<1.1', + 'scikit-learn>=0.23,<1.3', 'scipy>=1.5,<1.8', 'torch>=1.7,<1.11', 'torchsummary~=1.5.0',