From 7cc268018358b2daad83d3e03e3ea13c5a0418d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 22:24:43 +0000 Subject: [PATCH] Update scikit-learn requirement from <1.1,>=0.23 to >=0.23,<1.2 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.1.1) --- 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 9bc6b96c..e029016e 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.2', ] 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.2', 'scipy>=1.5,<1.8', 'torch>=1.7,<1.11', 'torchsummary~=1.5.0',