From ec48bd0efbc3ef341177c9c1c4f1bf5f0ab1f3cc Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 26 Aug 2024 11:50:08 +0200 Subject: [PATCH] CI: switch testing to Python 3.10+ Test the more recent versions of Python, to ensure Betelgeuse works also with these versions. The oldest versions are dropped, leaving only the latest 3 versions of Python. --- .github/workflows/checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4880eca..5d21c43 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2