From 95b0ec81ff883711d551aa96f2cc47f596cd98b0 Mon Sep 17 00:00:00 2001 From: Daniel Flores Date: Fri, 10 Oct 2025 11:58:19 -0400 Subject: [PATCH 1/2] add python, cuda versions --- .github/workflows/linux_cuda_wheel.yaml | 4 ++-- .github/workflows/linux_wheel.yaml | 2 +- .github/workflows/macos_wheel.yaml | 2 +- .github/workflows/windows_wheel.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux_cuda_wheel.yaml b/.github/workflows/linux_cuda_wheel.yaml index 17f18fe8b..24b5cea20 100644 --- a/.github/workflows/linux_cuda_wheel.yaml +++ b/.github/workflows/linux_cuda_wheel.yaml @@ -66,10 +66,10 @@ jobs: # PR. # For the actual release we should add that label and change this to # include more python versions. - python-version: ['3.10'] + python-version: ["3.10", "3.11", "3.12", "3.13"] # We test against 12.6 and 13.0 to avoid having too big of a CI matrix, # but for releases we should add 12.8. - cuda-version: ['12.6', '13.0'] + cuda-version: ['12.6', '12.8', '13.0'] # TODO: put back ffmpeg 5 https://github.com/pytorch/torchcodec/issues/325 ffmpeg-version-for-tests: ['4.4.2', '6', '7', '8.0'] diff --git a/.github/workflows/linux_wheel.yaml b/.github/workflows/linux_wheel.yaml index bd6ba26e4..be24fcd45 100644 --- a/.github/workflows/linux_wheel.yaml +++ b/.github/workflows/linux_wheel.yaml @@ -62,7 +62,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10'] + python-version: ["3.10", "3.11", "3.12", "3.13"] ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1', '8.0'] needs: build steps: diff --git a/.github/workflows/macos_wheel.yaml b/.github/workflows/macos_wheel.yaml index 1cee43f22..c9da40834 100644 --- a/.github/workflows/macos_wheel.yaml +++ b/.github/workflows/macos_wheel.yaml @@ -64,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10'] + python-version: ["3.10", "3.11", "3.12", "3.13"] ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1', '8.0'] needs: build steps: diff --git a/.github/workflows/windows_wheel.yaml b/.github/workflows/windows_wheel.yaml index 38cc53be9..f623b2cd8 100644 --- a/.github/workflows/windows_wheel.yaml +++ b/.github/workflows/windows_wheel.yaml @@ -67,7 +67,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10'] + python-version: ["3.10", "3.11", "3.12", "3.13"] # TODO: FFmpeg 5 on Windows segfaults in avcodec_open2() when passing # bad parameters. # See https://github.com/pytorch/torchcodec/pull/806 From 0905924cfc2a40cc1ec68cd7f18c2dd2ff714ea5 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Mon, 13 Oct 2025 17:50:00 +0100 Subject: [PATCH 2/2] empty