From cec6a849a4c4e0e593ef7a20fd6e697ae2b04e9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 04:40:18 +0000 Subject: [PATCH] Update torch requirement from <2.2,>=1.5 to >=1.5,<2.3 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/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v1.7.0...v2.2.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2765b07..dd3739d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() extras = {} -extras["torch"] = ["torch>=1.5,<2.2"] +extras["torch"] = ["torch>=1.5,<2.3"] extras["all"] = extras["torch"] extras["docs"] = ["mkdocs-material"]