From 8a40289ba4183e7fb9647988c9d0b42c9b92ea00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Thu, 30 Nov 2023 09:39:23 +0100 Subject: [PATCH] =?UTF-8?q?Support=20Python=20versions=20=E2=89=A5=203.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Python 3.7 end of life was on 2023-06-27, 5 months ago. --- .github/workflows/tests.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c2ba1efb..4eae62e8 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.12 - run: pip install flake8 flake8-import-order doc8 Pygments - run: flake8 . - run: doc8 README.rst @@ -29,10 +29,11 @@ jobs: strategy: matrix: python-version: - - 3.7 - 3.8 - 3.9 - - nightly + - 3.10 + - 3.11 + - 3.12 steps: - name: Checkout uses: actions/checkout@v2