Skip to content

Commit b1c6340

Browse files
committed
no need to mention django 5.1 specifically
1 parent 89373eb commit b1c6340

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ A `coverage.py`_ plugin to measure test coverage of Django templates.
2121
.. |versions| image:: https://img.shields.io/pypi/pyversions/django_coverage_plugin.svg
2222
:target: https://pypi.python.org/pypi/django_coverage_plugin
2323
:alt: Supported Python Versions
24-
.. |djversions| image:: https://img.shields.io/badge/Django-1.8%20%7C%201.11%20%7C%202.2%20%7C%203.2%20%7C%204.1-44b78b.svg
24+
.. the Django badge says: `2.2 | 3.2 | 4.2 | 5.2`
25+
.. |djversions| image:: https://img.shields.io/badge/Django-2.2%20%7C%203.2%20%7C%204.2%20%7C%205.2-44b78b.svg
2526
:target: https://pypi.python.org/pypi/django_coverage_plugin
2627
:alt: Supported Django Versions
2728

@@ -33,7 +34,7 @@ Supported on:
3334

3435
- Python: 3.9 through 3.13.
3536

36-
- Django: 2.x, 3.x, 4.x and 5.x.
37+
- Django: 2.2 through 5.2.
3738

3839
- Coverage.py: 6.x or higher.
3940

@@ -49,8 +50,7 @@ To run it, add this setting to your ``.coveragerc`` file::
4950
Then run your tests under `coverage.py`_.
5051

5152
You will see your templates listed in your coverage report along with
52-
your Python modules. Please use `coverage.py`_ v4.4 or greater to allow
53-
the plugin to identify untested templates.
53+
your Python modules.
5454

5555
If you get a :code:`django.core.exceptions.ImproperlyConfigured` error,
5656
you need to set the :code:`DJANGO_SETTINGS_MODULE` environment variable.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def read(*names, **kwargs):
4444
Framework :: Django :: 2.2
4545
Framework :: Django :: 3.2
4646
Framework :: Django :: 4.2
47-
Framework :: Django :: 5.1
4847
Framework :: Django :: 5.2
4948
"""
5049

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# When changing this, also update the classifiers in setup.py:
1717
envlist =
1818
py39-django{22,32,42}-cov{6,7,tip},
19-
py310-django{32,42,51,52}-cov{6,7,tip},
20-
py311-django{42,51,52}-cov{6,7,tip},
21-
py312-django{51,52,tip}-cov{7,tip},
22-
py313-django{51,52,tip}-cov{7,tip},
19+
py310-django{32,42,52}-cov{6,7,tip},
20+
py311-django{42,52}-cov{6,7,tip},
21+
py312-django{52,tip}-cov{7,tip},
22+
py313-django{52,tip}-cov{7,tip},
2323
check,pkgcheck,doc
2424

2525
[testenv]
@@ -30,7 +30,6 @@ deps =
3030
django22: Django>=2.2,<3.0
3131
django32: Django>=3.2,<4.0
3232
django42: Django>=4.2,<5.0
33-
django51: Django>=5.1,<5.2
3433
django52: Django>=5.2,<6.0
3534
djangotip: git+https://github.com/django/django.git
3635
pytest

0 commit comments

Comments
 (0)