From e0f6420600893f7edc4c91de39f20d0c9e1bd724 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 9 Mar 2025 20:18:14 -0500 Subject: [PATCH] stop testing against 3.8 The latest Black doesn't support it. It's EOL now too. --- .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 d6398d33..773876d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}