Skip to content

Commit

Permalink
chore: Add Support Django 5.1 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimihito authored Aug 13, 2024
1 parent faaa57b commit 48123af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ jobs:
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
django: [ "4.2", "5.0"]
django: [ "4.2", "5.0", "5.1"]
exclude:
# django 5.1 does not support 3.8 and 3.9
- python-version: "3.8"
django: "5.1"
- python-version: "3.9"
django: "5.1"
# django 5.0 does not support 3.8 and 3.9
- python-version: "3.8"
django: "5.0"
Expand Down

0 comments on commit 48123af

Please sign in to comment.