Skip to content

Commit 177fd0f

Browse files
committed
Add support for Django 4.1
1 parent 5d1870c commit 177fd0f

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html
1010
### Added
1111

1212
- Added Python 3.11 support.
13+
- Added Django 4.1 support.
1314

1415
### Changed
1516

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ website outside of local development.
6161

6262
Tests run on sensible combinations of:
6363
- Python (3.6-3.11)
64-
- Django (1.11-4.0)
64+
- Django (1.11-4.1)
6565

6666
If you're stuck on old version of Python or Django, you may consider installing
6767
old versions.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Framework :: Django :: 3.1",
2222
"Framework :: Django :: 3.2",
2323
"Framework :: Django :: 4.0",
24+
"Framework :: Django :: 4.1",
2425
"Intended Audience :: Developers",
2526
"License :: OSI Approved :: MIT License",
2627
"Natural Language :: English",

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
envlist =
33
py36-django{111,20,21,22,30,31,32}
44
py37-django{111,20,21,22,30,31,32}
5-
py38-django{22,30,31,32,40}
6-
py39-django{22,30,31,32,40}
7-
py310-django{32,40}
8-
py311-django{32,40}
5+
py38-django{22,30,31,32,40,41}
6+
py39-django{22,30,31,32,40,41}
7+
py310-django{32,40,41}
8+
py311-django{32,40,41}
99

1010
isolated_build = True
1111

@@ -34,6 +34,7 @@ deps =
3434
django31: django~=3.1.0
3535
django32: django~=3.2.0
3636
django40: django~=4.0.0
37+
django41: django~=4.1.0
3738
setenv =
3839
PYTHONDONTWRITEBYTECODE=1
3940

0 commit comments

Comments
 (0)