Add torch v1.11.0 to the list of versions in adjust_versions.py (#9679)

This commit is contained in:
Danielle Pintz 2021-09-24 01:27:16 -07:00 committed by GitHub
parent 41e3be197f
commit c2e3ec164a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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"),