From 7f33de00021e7f16fdae62edd5efa8cc39a946c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 24 Dec 2025 18:24:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Remove=20Python=203.8=20from=20C?= =?UTF-8?q?I,=20preparation=20for=20dropping=20support=20for=203.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a72653939..dba3d66d6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,8 +22,6 @@ jobs: os: [ ubuntu-latest, windows-latest, macos-latest ] python-version: [ "3.14" ] include: - - os: macos-latest - python-version: "3.8" - os: windows-latest python-version: "3.9" - os: ubuntu-latest @@ -57,7 +55,7 @@ jobs: - name: Install Dependencies run: uv pip install -r requirements-tests.txt - name: Lint - if: matrix.python-version != '3.7' && matrix.python-version != '3.8' && matrix.python-version != '3.9' + if: matrix.python-version != '3.9' run: bash scripts/lint.sh - run: mkdir coverage - run: bash ./scripts/test-files.sh @@ -84,7 +82,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: - python-version: '3.8' + python-version: '3.13' - name: Setup uv uses: astral-sh/setup-uv@v7 with: