Skip to content

Commit 813a95e

Browse files
TroyGardenmeta-codesync[bot]
authored andcommitted
release cut for v1.4.0 (#3463)
Summary: Pull Request resolved: #3463 # context * this is the release cut for TorchRec v1.4.0 * bump the version to `v1.5.0a0` (means any future commit goes to next version, v1.5.0) * skip python3.14 due to lack of torch.compile support [issue](pytorch/pytorch#156856) * in-sync with fbgemm v1.4.0 and pytorch 2.9 Reviewed By: spmex Differential Revision: D84945552 fbshipit-source-id: 4b1837f60a9ccdcc8619340637e7a4b57ac9d8da
1 parent fd5a067 commit 813a95e

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/scripts/filter.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ def main():
6363
if entry["desired_cuda"] == "cu130":
6464
# fbgemm only supports cuda 12.6, 12.8 and 12.9
6565
continue
66-
if entry["python_version"] in ("3.14", "3.9"):
67-
# stop python3.9 support, and will add python3.14 when it's ready
68-
# https://devguide.python.org/versions/
66+
if entry["python_version"] in ("3.14", "3.14t", "3.9"):
67+
# stop python3.9 support, and skipp python3.14 due to incompatibility with torch.compile
68+
# for python version: https://devguide.python.org/versions/
69+
# for torch.compile: https://github.com/pytorch/pytorch/issues/156856
6970
continue
7071
new_matrix_entries.append(entry)
7172

.github/scripts/validate_binaries.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ export CONDA_ENV="build_binary"
1111

1212
if [[ ${MATRIX_PYTHON_VERSION} = '3.14' ]]; then
1313
exit 0 # fbgemm doesn't support python 3.14 so far
14-
# conda currently doesn't support 3.14 unless using the forge channel
15-
conda create -y -n "${CONDA_ENV}" python="3.14" -c conda-forge
1614
elif [[ ${MATRIX_PYTHON_VERSION} = '3.14t' ]]; then
1715
exit 0 # fbgemm doesn't support python 3.14 so far
1816
# use conda-forge to install python3.14t

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.0a0
1+
1.5.0a0

0 commit comments

Comments
 (0)