From 463476f2434ce5983146697295f2a6249bd01b16 Mon Sep 17 00:00:00 2001 From: Alex Fabre Date: Mon, 6 Oct 2025 11:34:23 +0200 Subject: [PATCH] ci: remove python 3.9 from CI matrix CI jobs run on each python version from 3.10 to 3.13. Version 3.9 is now not tested. Signed-off-by: Alex Fabre --- .github/workflows/commit-format.yml | 2 +- .github/workflows/pylint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit-format.yml b/.github/workflows/commit-format.yml index c0dc496..75a1388 100644 --- a/.github/workflows/commit-format.yml +++ b/.github/workflows/commit-format.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 0be0f27..fac027e 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}