Skip to content

Commit 1adca2b

Browse files
TroyGardenfacebook-github-bot
authored andcommitted
remove py3.9 from CI (meta-pytorch#3360)
Summary: Pull Request resolved: meta-pytorch#3360 # context * python 3.9 is out of support soon ([python versions](https://devguide.python.org/versions/)) * we observe current CI issues in python3.9 ([failed job](https://github.com/pytorch/torchrec/actions/runs/17518564173/job/49759302149)) and found out it's due to fbgemm also stopped python3.9 build, so the recent changes are not included in the fbgemm library. * we also remove python3.9 from our CI jobs. Reviewed By: spmex Differential Revision: D81942031 fbshipit-source-id: 20126fe69407c74d4eeb2d88c209a1393cb01093
1 parent f1c9b64 commit 1adca2b

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/scripts/filter.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ 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"] == "3.14":
67-
# it seems stuck `conda create myenv python=3.14 -c conda-forge`
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/
6869
continue
6970
new_matrix_entries.append(entry)
7071

.github/workflows/unittest_ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030
os:
3131
- linux.g5.12xlarge.nvidia.gpu
3232
python:
33-
- version: "3.9"
34-
tag: "py39"
3533
- version: "3.10"
3634
tag: "py310"
3735
- version: "3.11"

.github/workflows/unittest_ci_cpu.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
os:
2626
- linux.2xlarge
2727
python:
28-
- version: "3.9"
29-
tag: "py39"
3028
- version: "3.10"
3129
tag: "py310"
3230
- version: "3.11"

0 commit comments

Comments
 (0)