From a74d2250e5fa5021897a1bf0e87895fc37939a9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Apr 2023 12:41:32 +0000 Subject: [PATCH] Update torch requirement from <1.14.0,>=1.7.0 to >=1.7.0,<2.1.0 Updates the requirements on [torch](https://github.com/pytorch/pytorch) to permit the latest version. - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/master/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v1.7.0...v2.0.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3bad7d855..fc698ac06 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def readme(): "prophet>=1.1.0, <2.0.0", ], "torch": [ - "torch>=1.7.0, <1.14.0" + "torch>=1.7.0, <2.1.0" ], # https://github.com/SeldonIO/alibi-detect/issues/375 and 387 "tensorflow": [ @@ -23,14 +23,14 @@ def readme(): ], "keops": [ "pykeops>=2.0.0, <2.2.0", - "torch>=1.7.0, <1.14.0" + "torch>=1.7.0, <2.1.0" ], "all": [ "prophet>=1.1.0, <2.0.0", "tensorflow_probability>=0.8.0, <0.19.0", "tensorflow>=2.2.0, !=2.6.0, !=2.6.1, <2.12.0", # https://github.com/SeldonIO/alibi-detect/issues/375 and 387 "pykeops>=2.0.0, <2.2.0", - "torch>=1.7.0, <1.14.0" + "torch>=1.7.0, <2.1.0" ], }