Skip to content

Commit 5a328cc

Browse files
authored
Set 3.10 as minimum supported version (#848)
1 parent 276f2b5 commit 5a328cc

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix:
54-
# 3.9 corresponds to the minimum python version for which we build
54+
# 3.10 corresponds to the minimum python version for which we build
5555
# the wheel unless the label cliflow/binaries/all is present in the
5656
# PR.
57-
python-version: ['3.9']
57+
python-version: ['3.10']
5858
cuda-version: ['12.6']
5959
ffmpeg-version-for-tests: ['7']
6060
container:

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
strategy:
6262
fail-fast: false
6363
matrix:
64-
# 3.9 corresponds to the minimum python version for which we build
64+
# 3.10 corresponds to the minimum python version for which we build
6565
# the wheel unless the label cliflow/binaries/all is present in the
6666
# PR.
6767
# For the actual release we should add that label and change this to
6868
# include more python versions.
69-
python-version: ['3.9']
69+
python-version: ['3.10']
7070
# We test against 12.6 and 12.9 to avoid having too big of a CI matrix,
7171
# but for releases we should add 12.8.
7272
cuda-version: ['12.6', '12.9']

.github/workflows/linux_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
fail-fast: false
6464
matrix:
65-
python-version: ['3.9']
65+
python-version: ['3.10']
6666
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
6767
needs: build
6868
steps:

.github/workflows/macos_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
python-version: ['3.9']
66+
python-version: ['3.10']
6767
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
6868
needs: build
6969
steps:

.github/workflows/reference_resources.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ['3.9']
22+
python-version: ['3.10']
2323
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
2424
steps:
2525
- name: Setup conda env

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ The following table indicates the compatibility between versions of
130130

131131
| `torchcodec` | `torch` | Python |
132132
| ------------------ | ------------------ | ------------------- |
133-
| `main` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.13` |
133+
| `main` / `nightly` | `main` / `nightly` | `>=3.10`, `<=3.13` |
134134
| `0.6` | `2.8` | `>=3.9`, `<=3.13` |
135135
| `0.5` | `2.7` | `>=3.9`, `<=3.13` |
136136
| `0.4` | `2.7` | `>=3.9`, `<=3.13` |

0 commit comments

Comments
 (0)