From d33d102a87f6e62d6fec944de9a585e6649ad612 Mon Sep 17 00:00:00 2001 From: Marko Ristin-Kaufmann Date: Tue, 28 Oct 2025 15:01:11 +0100 Subject: [PATCH] Remove Python 3.7 from CI GitHub does not support Python 3.7 anymore since it reached the end-of-life, so we need to remove it from the continuous integration. --- .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 81799ab..973a79a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@master