Skip to content

Commit 80a77aa

Browse files
authored
Test only Python versions supported by Django (#40)
1 parent 8c18622 commit 80a77aa

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,18 @@ jobs:
1212
strategy:
1313
matrix:
1414
django-version: ["4.2", "5.0", "5.1", "5.2"]
15-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13"]
16+
exclude:
17+
- django-version: "4.2"
18+
python-version: "3.13"
19+
- django-version: "4.2"
20+
python-version: "3.14"
21+
- django-version: "5.0"
22+
python-version: "3.13"
23+
- django-version: "5.0"
24+
python-version: "3.14"
25+
- django-version: "5.1"
26+
python-version: "3.14"
1627
steps:
1728
- uses: actions/checkout@v4
1829

0 commit comments

Comments
 (0)