From c2e3ec164aea692f5a944b4f2d1782a2f363605c Mon Sep 17 00:00:00 2001 From: Danielle Pintz <38207072+daniellepintz@users.noreply.github.com> Date: Fri, 24 Sep 2021 01:27:16 -0700 Subject: [PATCH] Add torch v1.11.0 to the list of versions in adjust_versions.py (#9679) --- requirements/adjust_versions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements/adjust_versions.py b/requirements/adjust_versions.py index 278f2c71c7..a60007d496 100644 --- a/requirements/adjust_versions.py +++ b/requirements/adjust_versions.py @@ -5,7 +5,8 @@ from typing import Dict, Optional # IMPORTANT: this list needs to be sorted in reverse VERSIONS = [ - dict(torch="1.10.0", torchvision="0.11.*", torchtext=""), # nightly + dict(torch="1.11.0", torchvision="0.11.*", torchtext=""), # nightly + dict(torch="1.10.0", torchvision="0.11.*", torchtext=""), dict(torch="1.9.1", torchvision="0.10.1", torchtext="0.10.1"), dict(torch="1.9.0", torchvision="0.10.0", torchtext="0.10.0"), dict(torch="1.8.2", torchvision="0.9.1", torchtext="0.9.1"),