From 43fe48d4f3f7dd974e3ddc378f20576989969b2d Mon Sep 17 00:00:00 2001 From: atalman Date: Mon, 13 Mar 2023 11:22:08 -0700 Subject: [PATCH 1/3] Release script changes --- aarch64_linux/build_aarch64_wheel.py | 6 +++--- release/promote.sh | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/aarch64_linux/build_aarch64_wheel.py b/aarch64_linux/build_aarch64_wheel.py index d6ecb83d0..07c15cc0e 100755 --- a/aarch64_linux/build_aarch64_wheel.py +++ b/aarch64_linux/build_aarch64_wheel.py @@ -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 = "" @@ -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 = "" @@ -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 = "" diff --git a/release/promote.sh b/release/promote.sh index 74d8df3a7..b190ee2f8 100644 --- a/release/promote.sh +++ b/release/promote.sh @@ -90,6 +90,7 @@ 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 "idna" whl "3.4" promote_s3 "networkx" whl "3.0.0" promote_s3 "packaging" whl "22.0" From 14319cfc9896dc8a0616f3e8b10ded4cf7d7b23e Mon Sep 17 00:00:00 2001 From: atalman Date: Mon, 13 Mar 2023 11:29:39 -0700 Subject: [PATCH 2/3] Add Jinja2 dependency --- release/promote.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/release/promote.sh b/release/promote.sh index b190ee2f8..8605682f9 100644 --- a/release/promote.sh +++ b/release/promote.sh @@ -91,6 +91,7 @@ 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" From b9e543bf8608797639c7b81c19bac96dae52b42d Mon Sep 17 00:00:00 2001 From: atalman Date: Mon, 13 Mar 2023 12:48:52 -0700 Subject: [PATCH 3/3] Fix typo --- s3_management/backup_conda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3_management/backup_conda.py b/s3_management/backup_conda.py index f239bbea1..06926589d 100644 --- a/s3_management/backup_conda.py +++ b/s3_management/backup_conda.py @@ -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)