From 83e83fda8fce359b264a7930e14ffcffe3873c42 Mon Sep 17 00:00:00 2001 From: vfdev Date: Tue, 10 Dec 2024 14:58:07 +0100 Subject: [PATCH] Update pytorch-version-tests.yml --- .github/workflows/pytorch-version-tests.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pytorch-version-tests.yml b/.github/workflows/pytorch-version-tests.yml index e14d46f2761..6f42efb69fa 100644 --- a/.github/workflows/pytorch-version-tests.yml +++ b/.github/workflows/pytorch-version-tests.yml @@ -15,24 +15,19 @@ jobs: max-parallel: 5 fail-fast: false matrix: - # Here we keep python 3.8 tests until the end of the 2024 and - # will drop python version and related pytorch versions - python-version: [3.8, 3.9, "3.10"] + python-version: [3.9, "3.10", "3.11"] pytorch-version: - [2.4.1, 2.3.1, 2.2.2, 2.0.1, 1.13.1, 1.12.1, 1.10.0, 1.8.1] + [2.4.1, 2.3.1, 2.2.2, 2.0.1, 1.13.1, 1.12.1, 1.10.0] exclude: - # disabling python 3.9 support with PyTorch 1.7.1 and 1.8.1, to stop repeated pytorch-version test fail. - # https://github.com/pytorch/ignite/issues/2383 - - pytorch-version: 1.8.1 - python-version: 3.9 - - pytorch-version: 1.8.1 - python-version: "3.10" - - pytorch-version: 1.10.0 python-version: "3.10" + - pytorch-version: 1.10.0 + python-version: "3.11" - pytorch-version: 1.11.0 python-version: "3.10" + - pytorch-version: 1.11.0 + python-version: "3.11" steps: - uses: actions/checkout@v4