From e5175831b588cf9ece2512756d0143fa55c861f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Mon, 13 Jan 2025 16:31:30 +0100 Subject: [PATCH] CI: Add support for Python 3.13 And drop support for Python 3.8 (end-of-life since 2024-10-07). --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7e55e6ad..050c64c4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,11 +39,11 @@ jobs: fail-fast: false matrix: python-version: - - '3.8' - '3.9' - '3.10' - '3.11' - '3.12' + - '3.13' steps: - name: Checkout uses: actions/checkout@v4