Skip to content

Commit

Permalink
Support for Django 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kimihito committed Aug 30, 2024
1 parent a8da753 commit ce5877c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
django-version: ["3.2", "4.2", "5.0"]
django-version: ["3.2", "4.2", "5.0", "5.1"]
experimental: [false]
include:
- python-version: "3.12"
Expand All @@ -44,6 +44,11 @@ jobs:
django-version: 5.0
- python-version: 3.9
django-version: 5.0
# Unsupported Python versions for Django 5.1
- python-version: 3.8
django-version: 5.1
- python-version: 3.9
django-version: 5.1

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

## Unreleased

- Add support for Django 5.1

## v3.4.0 - 2024/05/18

- Add support for Django 4.2 and 5.0
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{38,39,310,311,312,py3}-dj{32,42}
py{310,311,312,py3}-dj{50}
py{310,311,312,py3}-dj{50,51}
py312-packaging

[gh-actions]
Expand All @@ -18,6 +18,7 @@ DJANGO =
3.2: dj32
4.2: dj42
5.0: dj50
5.1: dj51
main: djmain
packaging: packaging

Expand All @@ -29,6 +30,7 @@ deps =
dj32: Django~=3.2.0
dj42: Django~=4.2.0
dj50: Django~=5.0.0
dj51: Django~=5.1.0
commands =
py{38,39,310,311,312}: coverage run tests/manage.py test testsuite {posargs: -v 2}
py{38,39,310,311,312}: coverage report -m
Expand Down

0 comments on commit ce5877c

Please sign in to comment.