Skip to content

Commit 5928951

Browse files
kiukchungfacebook-github-bot
authored andcommitted
(torchx/CI) Retiring support for python-3.9 (#1115)
Summary: Retiring official support for python-3.9. Removes python-3.9 unittests. Should simplify typing. Reviewed By: ethanbwaite Differential Revision: D82340571
1 parent f685fbe commit 5928951

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-unittests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
unittest:
1111
strategy:
1212
matrix:
13-
python-version: [3.9, "3.10", 3.11, 3.12]
13+
python-version: ["3.10", 3.11, 3.12]
1414
platform: [linux.24_04.4x]
1515
include:
1616
- python-version: 3.12

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def get_nightly_version():
2929

3030

3131
if __name__ == "__main__":
32-
if sys.version_info < (3, 8):
33-
sys.exit("python >= 3.8 required for torchx-sdk")
32+
if sys.version_info < (3, 10):
33+
sys.exit("python >= 3.10 required for torchx")
3434

3535
name = "torchx"
3636
NAME_ARG = "--override-name"

0 commit comments

Comments
 (0)