From c4d69eca1121b8100b7c3ca520ec718c3b197621 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 26 Oct 2023 14:25:45 -0700 Subject: [PATCH] Remove Python 3.7; add Python 3.12. Signed-off-by: Anders Kaseorg --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec53fc0..ccb7416 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,11 @@ jobs: strategy: matrix: python-version: - - 3.7 - - 3.8 - - 3.9 + - "3.8" + - "3.9" - "3.10" - - 3.11 + - "3.11" + - "3.12" runs-on: ubuntu-latest steps: - uses: actions/checkout@v3