diff --git a/README.rst b/README.rst index d6ef68f..ebb4adc 100644 --- a/README.rst +++ b/README.rst @@ -20,8 +20,8 @@ A `coverage.py`_ plugin to measure test coverage of Django templates. .. |versions| image:: https://img.shields.io/pypi/pyversions/django_coverage_plugin.svg :target: https://pypi.python.org/pypi/django_coverage_plugin :alt: Supported Python Versions -.. the Django badge says: `3.2 | 4.2 | 5.2` -.. |djversions| image:: https://img.shields.io/badge/Django-3.2%20%7C%204.2%20%7C%205.2-44b78b.svg +.. the Django badge says: `5.2 | 6.0` +.. |djversions| image:: https://img.shields.io/badge/Django-5.2%20%7C%206.0-44b78b.svg :target: https://pypi.python.org/pypi/django_coverage_plugin :alt: Supported Django Versions .. |sponsor| image:: https://img.shields.io/badge/%E2%9D%A4-Sponsor%20me-brightgreen?style=flat&logo=GitHub @@ -40,7 +40,7 @@ Supported on: - Python: 3.10 through 3.14. -- Django: 3.2 through 5.2. +- Django: 5.2 through 6.0. - Coverage.py: 6.x or higher. diff --git a/pyproject.toml b/pyproject.toml index 0c7292f..17362d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,9 +17,8 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: Django", - "Framework :: Django :: 3.2", - "Framework :: Django :: 4.2", "Framework :: Django :: 5.2", + "Framework :: Django :: 6.0", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.10", diff --git a/tox.ini b/tox.ini index 1aae1d5..621b4ca 100644 --- a/tox.ini +++ b/tox.ini @@ -15,11 +15,11 @@ [tox] # When changing this, also update the classifiers in setup.py: envlist = - py310-django{32,42,52}-cov{6,7,tip}, - py311-django{42,52}-cov{6,7,tip}, - py312-django{52,tip}-cov{7,tip}, - py313-django{52,tip}-cov{7,tip}, - py314-django{52,tip}-cov{7,tip}, + py310-django52-cov{6,7,tip}, + py311-django52-cov{6,7,tip}, + py312-django{52,60,tip}-cov{7,tip}, + py313-django{52,60,tip}-cov{7,tip}, + py314-django{52,60,tip}-cov{7,tip}, check,pkgcheck,doc [testenv] @@ -27,9 +27,8 @@ deps = cov6: coverage>=6.0,<7.0 cov7: coverage>=7.0,<8.0 covtip: git+https://github.com/nedbat/coveragepy.git - django32: Django>=3.2,<4.0 - django42: Django>=4.2,<5.0 django52: Django>=5.2,<6.0 + django60: Django>=6.0,<7.0 djangotip: git+https://github.com/django/django.git pytest unittest-mixins==1.6