Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this change? Coverage 6.x is still supported up to 3.11.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just felt old. Will update. Waiting on tox...

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nedbat reverted!


Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
13 changes: 6 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,20 @@
[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]
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
Expand Down