From d140c3fbe8247ea4fed795467f228954c6c72b8a Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Thu, 15 Dec 2022 10:54:17 -0500 Subject: [PATCH] Bump scripts in release (#1241) --- build_aarch64_wheel.py | 3 +++ release/promote.sh | 8 ++++---- release/release_versions.sh | 8 ++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/build_aarch64_wheel.py b/build_aarch64_wheel.py index 59119aa03..855fd404e 100755 --- a/build_aarch64_wheel.py +++ b/build_aarch64_wheel.py @@ -293,6 +293,7 @@ def build_torchvision(host: RemoteHost, *, "v1.12.0": ("0.13.0", "rc4"), "v1.12.1": ("0.13.1", "rc6"), "v1.13.0": ("0.14.0", "rc4"), + "v1.13.1": ("0.14.1", "rc2"), }) print('Building TorchVision wheel') build_vars = "" @@ -339,6 +340,7 @@ def build_torchtext(host: RemoteHost, *, "v1.12.0": ("0.13.0", "rc2"), "v1.12.1": ("0.13.1", "rc5"), "v1.13.0": ("0.14.0", "rc3"), + "v1.13.1": ("0.14.1", "rc1"), }) print('Building TorchText wheel') build_vars = "" @@ -380,6 +382,7 @@ def build_torchaudio(host: RemoteHost, *, "v1.12.0": ("0.12.0", "rc3"), "v1.12.1": ("0.12.1", "rc5"), "v1.13.0": ("0.13.0", "rc4"), + "v1.13.1": ("0.13.1", "rc2"), }) print('Building TorchAudio wheel') build_vars = "" diff --git a/release/promote.sh b/release/promote.sh index 7d49c9843..0550218c7 100644 --- a/release/promote.sh +++ b/release/promote.sh @@ -6,10 +6,10 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" source "${DIR}/release_versions.sh" # Make sure to update these versions when doing a release first -PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.0} -TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.0} -TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.0} -TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.0} +PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.1} +TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.1} +TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.1} +TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.1} DRY_RUN=${DRY_RUN:-enabled} diff --git a/release/release_versions.sh b/release/release_versions.sh index 7d6528130..61660d0bf 100644 --- a/release/release_versions.sh +++ b/release/release_versions.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Make sure to update these versions when doing a release first -PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.0} -TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.0} -TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.0} -TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.0} +PYTORCH_VERSION=${PYTORCH_VERSION:-1.13.1} +TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.14.1} +TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-0.13.1} +TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.14.1}