Skip to content

Commit

Permalink
Add support for Django 5.1 (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimihito committed Aug 25, 2024
1 parent 9ea35e1 commit 0fc0650
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- "4.1"
- "4.2"
- "5.0"
- "5.1"
- "main"
exclude:
- python-version: "3.7"
Expand All @@ -43,6 +44,12 @@ jobs:
django-version: "5.0"
- python-version: "3.9"
django-version: "5.0"
- python-version: "3.7"
django-version: "5.1"
- python-version: "3.8"
django-version: "5.1"
- python-version: "3.9"
django-version: "5.1"
- python-version: "3.7"
django-version: "main"
- python-version: "3.8"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
py{3.8,3.9,3.10,3.11}-django4.1
py{3.8,3.9,3.10,3.11}-django4.2
py{3.10,3.11,3.12}-django5.0
py{3.10,3.11,3.12}-django5.1
py{3.10,3.11,3.12}-djangomain
ruff

Expand All @@ -22,7 +23,8 @@ deps =
django3.2: django~=3.2.9
django4.1: django~=4.1.0
django4.2: django~=4.2.0
django5.0: django~=5.0b1
django5.0: django~=5.0.0
django5.1: django~=5.1.0
djangomain: https://github.com/django/django/archive/main.tar.gz
moto<5
pytest
Expand Down

0 comments on commit 0fc0650

Please sign in to comment.