From 50be6fc58d161d700e2c799725abc2934e6f165c Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Mon, 3 Mar 2025 11:06:05 -0500 Subject: [PATCH] Use Python 3.9-3.11 for GH Actions CI Python 3.8 and earlier are no longer support in GitHub Actions. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4319e560..485fcbb6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 3 matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] steps: - name: checkout