Skip to content

Commit 70fae43

Browse files
browniebrokenedbat
authored andcommitted
fix: add support for Django 4.0
1 parent 597f07d commit 70fae43

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A `coverage.py`_ plugin to measure test coverage of Django templates.
2828

2929
Supported Python versions: 2.7, and 3.6 through 3.10.
3030

31-
Supported Django versions: 1.8, 1.11, 2.x and 3.x.
31+
Supported Django versions: 1.8, 1.11, 2.x, 3.x and 4.x.
3232

3333
Supported coverage.py versions: 4.x or higher.
3434

@@ -130,6 +130,11 @@ To run the tests::
130130
History
131131
~~~~~~~
132132

133+
Unreleased
134+
----------
135+
136+
Add support for Django 4.0
137+
133138
v2.0.2 — 2021-11-11
134139
-------------------
135140

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def read(*names, **kwargs):
4848
Framework :: Django :: 1.11
4949
Framework :: Django :: 2.2
5050
Framework :: Django :: 3.2
51+
Framework :: Django :: 4.0
5152
"""
5253

5354
setup(

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ envlist =
1717
py27-django{18,111},
1818
py36-django{18,111,22,32},
1919
py37-django{22,32},
20-
py38-django{22,32,tip},
21-
py39-django{22,32,tip},
22-
py310-django{32,tip},
20+
py38-django{22,32,40,tip},
21+
py39-django{22,32,40,tip},
22+
py310-django{32,40,tip},
2323
check,pkgcheck,doc
2424

2525
[testenv]
@@ -30,6 +30,7 @@ deps =
3030
django111: Django>=1.11,<2.0
3131
django22: Django>=2.2,<3.0
3232
django32: Django>=3.2,<4.0
33+
django40: Django>=4.0,<4.1
3334
djangotip: https://github.com/django/django/archive/main.tar.gz
3435

3536
commands =

0 commit comments

Comments
 (0)