Skip to content

Commit

Permalink
Don't run Python 3.12 and 3.13 matrices for tests under GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
DelboyJay committed Dec 10, 2024
1 parent 4748485 commit 5cd4d8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5cd4d8b

Please sign in to comment.