From cc252eb7206d07bcab4e811051e3c6b7f44228c0 Mon Sep 17 00:00:00 2001 From: vi <8530778+shiftinv@users.noreply.github.com> Date: Fri, 13 Dec 2024 21:49:21 +0100 Subject: [PATCH] fix(ci): pin Python 3.12 in matrix to 3.12.7 due to PDM bug (#1255) --- .github/workflows/lint-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index f252b4d8b2..ef519ed570 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.7"] experimental: [false] fail-fast: false continue-on-error: ${{ matrix.experimental }} @@ -149,7 +149,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.7"] os: ["windows-latest", "ubuntu-latest", "macos-latest"] experimental: [false] fail-fast: true