From e49b43b193c01b4f29eb5c263258b66c68aa66a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 19 Oct 2024 11:59:58 +0200 Subject: [PATCH] Update Python versions in CI --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 626a6956..df5c1025 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,16 +8,18 @@ jobs: build: - runs-on: ubuntu-22.04 strategy: matrix: + os: + - ubuntu-24.04 python-version: - - "3.7" - - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" name: Python ${{ matrix.python-version }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }} steps: