From acd48d3b0d12bc2f1a34102131c83f52ca1853ea Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Sat, 17 Dec 2022 23:05:08 +0900 Subject: [PATCH] add 1.13.1 to adjust versions (#16099) --- requirements/pytorch/adjust-versions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements/pytorch/adjust-versions.py b/requirements/pytorch/adjust-versions.py index c9ed4c0770427..681886b966b75 100644 --- a/requirements/pytorch/adjust-versions.py +++ b/requirements/pytorch/adjust-versions.py @@ -5,7 +5,9 @@ # IMPORTANT: this list needs to be sorted in reverse VERSIONS = [ - dict(torch="1.13.0", torchvision="0.14.0"), # stable + dict(torch="1.14.0", torchvision="0.15.0"), # nightly + dict(torch="1.13.1", torchvision="0.14.1"), # stable + dict(torch="1.13.0", torchvision="0.14.0"), dict(torch="1.12.1", torchvision="0.13.1"), dict(torch="1.12.0", torchvision="0.13.0"), dict(torch="1.11.0", torchvision="0.12.0"),