Skip to content

Commit

Permalink
Bump scripts in release (#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Dec 15, 2022
1 parent a5e6d8d commit d140c3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions build_aarch64_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down Expand Up @@ -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 = ""
Expand Down Expand Up @@ -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 = ""
Expand Down
8 changes: 4 additions & 4 deletions release/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
8 changes: 4 additions & 4 deletions release/release_versions.sh
Original file line number Diff line number Diff line change
@@ -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}

0 comments on commit d140c3f

Please sign in to comment.