diff --git a/.github/workflows/pytorch-version-tests.yml b/.github/workflows/pytorch-version-tests.yml index e14d46f2761..1456a045e7e 100644 --- a/.github/workflows/pytorch-version-tests.yml +++ b/.github/workflows/pytorch-version-tests.yml @@ -15,24 +15,25 @@ 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" + - pytorch-version: 1.12.1 + python-version: "3.11" + # Conda fails to install cpuonly version and few cpu distributed tests are + # failing with unrelated errors + - pytorch-version: 1.13.1 + python-version: "3.11" steps: - uses: actions/checkout@v4