From 808602c497998f9e84f042ef90cf2010d69789dd Mon Sep 17 00:00:00 2001 From: Mathieu Choplain Date: Wed, 28 Aug 2024 11:17:36 +0200 Subject: [PATCH] ci: don't test on deprecated python versions Remove Python 3.7 and 3.8 from the CI test matrix, as these versions are deprecated / EOL. This enables usage of Python 3.9+ features in scripts, such as str.removeprefix/str.removesuffix, and should cause any issue since the scripts are always executed manually anyways. Signed-off-by: Mathieu Choplain --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a65d9bbd0..289e74b4e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10'] steps: - uses: actions/checkout@v1 - name: Set up Python