Skip to content

Commit

Permalink
Release script changes, add more release dependencies, bump version f…
Browse files Browse the repository at this point in the history
…or aarch64 builds (#1352)

* Release script changes

* Add Jinja2 dependency

* Fix typo
  • Loading branch information
atalman committed Mar 13, 2023
1 parent 76416e9 commit f0c0cfa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions aarch64_linux/build_aarch64_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def build_torchvision(host: RemoteHost, *,
"v1.12.1": ("0.13.1", "rc6"),
"v1.13.0": ("0.14.0", "rc4"),
"v1.13.1": ("0.14.1", "rc2"),
"v2.0.0": ("0.15.0", "rc6"),
"v2.0.0": ("0.15.0", "rc7"),
})
print('Building TorchVision wheel')
build_vars = ""
Expand Down Expand Up @@ -381,7 +381,7 @@ def build_torchtext(host: RemoteHost, *,
"v1.12.1": ("0.13.1", "rc5"),
"v1.13.0": ("0.14.0", "rc3"),
"v1.13.1": ("0.14.1", "rc1"),
"v2.0.0": ("0.15.0", "rc4"),
"v2.0.0": ("0.15.0", "rc6"),
})
print('Building TorchText wheel')
build_vars = ""
Expand Down Expand Up @@ -424,7 +424,7 @@ def build_torchaudio(host: RemoteHost, *,
"v1.12.1": ("0.12.1", "rc5"),
"v1.13.0": ("0.13.0", "rc4"),
"v1.13.1": ("0.13.1", "rc2"),
"v2.0.0": ("2.0.0", "rc5"),
"v2.0.0": ("2.0.0", "rc6"),
})
print('Building TorchAudio wheel')
build_vars = ""
Expand Down
2 changes: 2 additions & 0 deletions release/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ promote_s3 "sympy" whl "1.11.1"
promote_s3 "typing_extensions" whl "4.4.0"
promote_s3 "filelock" whl "3.9.0"
promote_s3 "mpmath" whl "1.2.1"
promote_s3 "MarkupSafe" whl "2.1.2"
promote_s3 "Jinja2" whl "3.1.2"
promote_s3 "idna" whl "3.4"
promote_s3 "networkx" whl "3.0.0"
promote_s3 "packaging" whl "22.0"
Expand Down
2 changes: 1 addition & 1 deletion s3_management/backup_conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ def upload_to_s3(prefix: str, fnames: List[str]) -> None:
for libname in ["torchvision", "torchaudio", "torchtext"]:
print(f"processing {libname}")
rc = download_conda_package(libname, channel = "pytorch", depends = f"pytorch {options.version}")
upload_to_s3f(f"v{options.version}/conda", rc)
upload_to_s3(f"v{options.version}/conda", rc)

0 comments on commit f0c0cfa

Please sign in to comment.