Skip to content

Commit 639d48a

Browse files
authored
Add Django 6, drop 3.2 and 4.2 which are EOL (#109)
* Add Django 6, drop 3.2 and 4.2 which are EOL * Update README
1 parent 53d114a commit 639d48a

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ A `coverage.py`_ plugin to measure test coverage of Django templates.
2020
.. |versions| image:: https://img.shields.io/pypi/pyversions/django_coverage_plugin.svg
2121
:target: https://pypi.python.org/pypi/django_coverage_plugin
2222
:alt: Supported Python Versions
23-
.. the Django badge says: `3.2 | 4.2 | 5.2`
24-
.. |djversions| image:: https://img.shields.io/badge/Django-3.2%20%7C%204.2%20%7C%205.2-44b78b.svg
23+
.. the Django badge says: `5.2 | 6.0`
24+
.. |djversions| image:: https://img.shields.io/badge/Django-5.2%20%7C%206.0-44b78b.svg
2525
:target: https://pypi.python.org/pypi/django_coverage_plugin
2626
:alt: Supported Django Versions
2727
.. |sponsor| image:: https://img.shields.io/badge/%E2%9D%A4-Sponsor%20me-brightgreen?style=flat&logo=GitHub
@@ -40,7 +40,7 @@ Supported on:
4040

4141
- Python: 3.10 through 3.14.
4242

43-
- Django: 3.2 through 5.2.
43+
- Django: 5.2 through 6.0.
4444

4545
- Coverage.py: 6.x or higher.
4646

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ classifiers = [
1717
"Development Status :: 5 - Production/Stable",
1818
"Environment :: Console",
1919
"Framework :: Django",
20-
"Framework :: Django :: 3.2",
21-
"Framework :: Django :: 4.2",
2220
"Framework :: Django :: 5.2",
21+
"Framework :: Django :: 6.0",
2322
"Intended Audience :: Developers",
2423
"Operating System :: OS Independent",
2524
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,20 @@
1515
[tox]
1616
# When changing this, also update the classifiers in setup.py:
1717
envlist =
18-
py310-django{32,42,52}-cov{6,7,tip},
19-
py311-django{42,52}-cov{6,7,tip},
20-
py312-django{52,tip}-cov{7,tip},
21-
py313-django{52,tip}-cov{7,tip},
22-
py314-django{52,tip}-cov{7,tip},
18+
py310-django52-cov{6,7,tip},
19+
py311-django52-cov{6,7,tip},
20+
py312-django{52,60,tip}-cov{7,tip},
21+
py313-django{52,60,tip}-cov{7,tip},
22+
py314-django{52,60,tip}-cov{7,tip},
2323
check,pkgcheck,doc
2424

2525
[testenv]
2626
deps =
2727
cov6: coverage>=6.0,<7.0
2828
cov7: coverage>=7.0,<8.0
2929
covtip: git+https://github.com/nedbat/coveragepy.git
30-
django32: Django>=3.2,<4.0
31-
django42: Django>=4.2,<5.0
3230
django52: Django>=5.2,<6.0
31+
django60: Django>=6.0,<7.0
3332
djangotip: git+https://github.com/django/django.git
3433
pytest
3534
unittest-mixins==1.6

0 commit comments

Comments
 (0)