Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion release/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.1.1}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.16.1}
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-0.6.0}

# NB: FBGEMMGPU uses the practice of keeping rc version in the filename, i.e.
# fbgemm_gpu-0.6.0rc1+cpu-cp311-cp311. On the other hand, its final RC will
# be without rc suffix, fbgemm_gpu-0.6.0+cpu-cp311-cp311, and that's the one
# ready to be promoted. So, keeping a + here in the version name allows the
# promote script to find the correct binaries
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-0.6.0+}

DRY_RUN=${DRY_RUN:-enabled}

Expand Down
8 changes: 7 additions & 1 deletion release/release_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,10 @@ TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.0}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.0}
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-0.6.0}

# NB: FBGEMMGPU uses the practice of keeping rc version in the filename, i.e.
# fbgemm_gpu-0.6.0rc1+cpu-cp311-cp311. On the other hand, its final RC will
# be without rc suffix, fbgemm_gpu-0.6.0+cpu-cp311-cp311, and that's the one
# ready to be promoted. So, keeping a + here in the version name allows the
# promote script to find the correct binaries
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-0.6.0+}