Skip to content

Commit a73d1b2

Browse files
author
Daniel Flores
committed
add missing python, cuda, ffmpeg versions
1 parent 6377dfc commit a73d1b2

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,10 @@ jobs:
6464
# 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.
67-
# For the actual release we should add that label and change this to
68-
# include more python versions.
69-
python-version: ['3.10']
70-
# We test against 12.6 and 13.0 to avoid having too big of a CI matrix,
71-
# but for releases we should add 12.8.
72-
cuda-version: ['12.6', '13.0']
67+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
68+
cuda-version: ['12.6', '12.8', '13.0']
7369
# TODO: put back ffmpeg 5 https://github.com/pytorch/torchcodec/issues/325
74-
ffmpeg-version-for-tests: ['4.4.2', '6', '7']
70+
ffmpeg-version-for-tests: ['4.4.2', '5', '6', '7']
7571

7672
container:
7773
image: "pytorch/manylinux2_28-builder:cuda${{ matrix.cuda-version }}"

.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.10']
65+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
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
@@ -64,7 +64,7 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
python-version: ['3.10']
67+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
6868
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
6969
needs: build
7070
steps:

.github/workflows/windows_wheel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
python-version: ['3.10']
70+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
7171
# TODO: FFmpeg 5 on Windows segfaults in avcodec_open2() when passing
7272
# bad parameters.
7373
# See https://github.com/pytorch/torchcodec/pull/806
74-
ffmpeg-version-for-tests: ['4.4.2', '6.1.1', '7.0.1']
74+
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
7575
needs: build
7676
steps:
7777
- uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)