From 5cd4d8b054bb94e4f23d07d4ab47d2f81d8b73fd Mon Sep 17 00:00:00 2001 From: Del Hyman-Jones Date: Tue, 10 Dec 2024 17:14:56 +0000 Subject: [PATCH] Don't run Python 3.12 and 3.13 matrices for tests under GitHub actions. --- .github/workflows/continuous_integration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index a0df7a7..14d3a41 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -36,7 +36,9 @@ jobs: PGDATABASE: postgres strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11"] + # We can support Python 3.12 and 3.13 when we remove support for Django 3.2 + # python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] fail-fast: false steps: