Skip to content

Commit f0c0cfa

Browse files
authored
Release script changes, add more release dependencies, bump version for aarch64 builds (#1352)
* Release script changes * Add Jinja2 dependency * Fix typo
1 parent 76416e9 commit f0c0cfa

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

aarch64_linux/build_aarch64_wheel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def build_torchvision(host: RemoteHost, *,
298298
"v1.12.1": ("0.13.1", "rc6"),
299299
"v1.13.0": ("0.14.0", "rc4"),
300300
"v1.13.1": ("0.14.1", "rc2"),
301-
"v2.0.0": ("0.15.0", "rc6"),
301+
"v2.0.0": ("0.15.0", "rc7"),
302302
})
303303
print('Building TorchVision wheel')
304304
build_vars = ""
@@ -381,7 +381,7 @@ def build_torchtext(host: RemoteHost, *,
381381
"v1.12.1": ("0.13.1", "rc5"),
382382
"v1.13.0": ("0.14.0", "rc3"),
383383
"v1.13.1": ("0.14.1", "rc1"),
384-
"v2.0.0": ("0.15.0", "rc4"),
384+
"v2.0.0": ("0.15.0", "rc6"),
385385
})
386386
print('Building TorchText wheel')
387387
build_vars = ""
@@ -424,7 +424,7 @@ def build_torchaudio(host: RemoteHost, *,
424424
"v1.12.1": ("0.12.1", "rc5"),
425425
"v1.13.0": ("0.13.0", "rc4"),
426426
"v1.13.1": ("0.13.1", "rc2"),
427-
"v2.0.0": ("2.0.0", "rc5"),
427+
"v2.0.0": ("2.0.0", "rc6"),
428428
})
429429
print('Building TorchAudio wheel')
430430
build_vars = ""

release/promote.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ promote_s3 "sympy" whl "1.11.1"
9090
promote_s3 "typing_extensions" whl "4.4.0"
9191
promote_s3 "filelock" whl "3.9.0"
9292
promote_s3 "mpmath" whl "1.2.1"
93+
promote_s3 "MarkupSafe" whl "2.1.2"
94+
promote_s3 "Jinja2" whl "3.1.2"
9395
promote_s3 "idna" whl "3.4"
9496
promote_s3 "networkx" whl "3.0.0"
9597
promote_s3 "packaging" whl "22.0"

s3_management/backup_conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def upload_to_s3(prefix: str, fnames: List[str]) -> None:
6868
for libname in ["torchvision", "torchaudio", "torchtext"]:
6969
print(f"processing {libname}")
7070
rc = download_conda_package(libname, channel = "pytorch", depends = f"pytorch {options.version}")
71-
upload_to_s3f(f"v{options.version}/conda", rc)
71+
upload_to_s3(f"v{options.version}/conda", rc)

0 commit comments

Comments
 (0)