From a1248be4ae1a6cbcbf29e28900a868898df1e2f5 Mon Sep 17 00:00:00 2001 From: tcely Date: Sun, 22 Dec 2024 05:33:08 -0500 Subject: [PATCH] Update ci.yaml Python `3.13` is not expected to work until Django `5.1` and we are currently using `3.2`, so that's not worth testing. More info: https://code.djangoproject.com/ticket/34900 --- .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 8d612e02..faf25319 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 - name: Install Python ${{ matrix.python-version }}