Skip to content

Commit b39cccf

Browse files
authored
Release 2.1 update promotion scripts (#1564)
1 parent 8bcc83d commit b39cccf

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

release/promote.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66
source "${DIR}/release_versions.sh"
77

88
# Make sure to update these versions when doing a release first
9-
PYTORCH_VERSION=${PYTORCH_VERSION:-2.0.0}
10-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.15.0}
11-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.0.0}
12-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.15.0}
13-
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.6.0}
9+
PYTORCH_VERSION=${PYTORCH_VERSION:-2.1.0}
10+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.16.0}
11+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.1.0}
12+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.16.0}
13+
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.0}
1414

1515
DRY_RUN=${DRY_RUN:-enabled}
1616

@@ -104,9 +104,9 @@ promote_pypi() {
104104
# promote_s3 torchdata whl "${TORCHDATA_VERSION}"
105105
# promote_s3 "libtorch-*" libtorch "${PYTORCH_VERSION}"
106106

107-
# promote_conda torchtriton conda "2.0.0"
108-
# promote_conda pytorch-cuda conda "11.7"
107+
# promote_conda torchtriton conda "2.1.0"
109108
# promote_conda pytorch-cuda conda "11.8"
109+
# promote_conda pytorch-cuda conda "12.1"
110110

111111
# promote_conda pytorch conda "${PYTORCH_VERSION}"
112112
# promote_conda torchvision conda "${TORCHVISION_VERSION}"

release/pypi/promote_pypi_to_staging.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ upload_pypi_to_staging() {
2121
}
2222

2323
# Uncomment these to promote to pypi
24-
PYTORCH_LINUX_VERSION_SUFFIX="%2Bcu117.with.pypi.cudnn"
25-
LINUX_VERSION_SUFFIX="%2Bcu117"
24+
PYTORCH_LINUX_VERSION_SUFFIX="%2Bcu121.with.pypi.cudnn"
25+
LINUX_VERSION_SUFFIX="%2Bcu121"
2626
WIN_VERSION_SUFFIX="%2Bcpu"
2727
MACOS_X86_64="macosx_.*_x86_64"
2828
MACOS_ARM64="macosx_.*_arm64"

release/release_versions.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22

33
# Make sure to update these versions when doing a release first
4-
PYTORCH_VERSION=${PYTORCH_VERSION:-2.0.0}
5-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.15.0}
6-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.0.0}
7-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.15.0}
8-
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.6.0}
4+
PYTORCH_VERSION=${PYTORCH_VERSION:-2.1.0}
5+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.16.0}
6+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.1.0}
7+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.16.0}
8+
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.0}

0 commit comments

Comments
 (0)