From 76b8453112b147c00426e2dd462f922005ebf82d Mon Sep 17 00:00:00 2001 From: Robert Winkler Date: Mon, 17 Jul 2023 15:26:59 +0200 Subject: [PATCH] ci: Update the list of supported python versions Recently, Amaranth HDL dropped support for Python 3.7. Since this version of the interpreter is more than 5 years old, we may also drop the support for it. Signed-off-by: Robert Winkler --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 291adc60..332e5f90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3