From dc6c4b43becc857e095215671f6d5bebf9513bed Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Mon, 2 Dec 2024 17:07:31 +0100 Subject: [PATCH] github: pylint: new supported versions Python 3.8 has been marked as EoL almost 2 months ago. Python 3.11, 3.12 and 3.13 have been released. Link: https://devguide.python.org/versions/ Signed-off-by: Matthieu Baerts (NGI0) --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 869354a..4d6d3fb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}