From 06fdb8879c082e0e8dc22509572243b16d1cd09e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Jul 2022 09:28:09 -0700 Subject: [PATCH] build(deps): update torch requirement (#277) 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.9.0...v1.12.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d9c34858..5d42a0cd 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setuptools.setup( url="https://github.com/stanford-oval/genienlp", install_requires=[ 'numpy>=1.14.5', - 'torch>=1.9.0,<1.12.0', + 'torch>=1.9.0,<1.13.0', 'transformers==4.20.1', 'datasets==2.3.2', 'pathos==0.2.8',