From ef99c4bffde87d8238020e51a9bdf1ccff6f9768 Mon Sep 17 00:00:00 2001 From: Yigtwxx Date: Sat, 1 Aug 2026 14:49:57 +0300 Subject: [PATCH] Add newer PyTorch versions to the test matrix The matrix stops at PyTorch 2.5.1 (November 2024), so there is no coverage of the releases most users are on today. Add three rows spanning the gap: - 2.6.0, the release that flipped the `torch.load` default to `weights_only=True` - 2.9.1, mid-gap - 2.13.0, current latest Existing rows are left untouched. --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a37a88f66..c7710dc28 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,6 +70,15 @@ jobs: - python-version: '3.13' pytorch-version: 2.5.1 numpy-requirement: "'numpy'" + - python-version: '3.12' + pytorch-version: 2.6.0 + numpy-requirement: "'numpy'" + - python-version: '3.13' + pytorch-version: 2.9.1 + numpy-requirement: "'numpy'" + - python-version: '3.13' + pytorch-version: 2.13.0 + numpy-requirement: "'numpy'" steps: - uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3 - run: conda install -n test ffmpeg python=${{ matrix.python-version }}