From fb6389dc9dcb4f7287ee07ff32b04db99e397e4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 09:52:31 +0000 Subject: [PATCH] chore(deps): update torch requirement from ^1.9.0 to >=1.9,<3.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/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v1.9.0...v2.1.1) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f4d4026..23e0b02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ fastparquet = ">=0.4.1" dask = {version = ">=2021.5.0", extras = ["complete"], optional = true} distributed = {version = ">=2021.5.0", extras = ["complete"], optional = true} tornado = ">=6.0.3" -torch = {version = "^1.9.0", optional = true} +torch = {version = ">=1.9,<3.0", optional = true} [tool.poetry.group.dev.dependencies] isort = ">=5.8.0"