Skip to content

Commit e0bce92

Browse files
committed
build: test on 3.12
1 parent f829489 commit e0bce92

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
- "3.9"
4646
- "3.10"
4747
- "3.11"
48+
- "3.12"
4849
fail-fast: false
4950

5051
steps:

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ A `coverage.py`_ plugin to measure test coverage of Django templates.
3131
3232
Supported on:
3333

34-
- Python: 3.8 through 3.11.
34+
- Python: 3.8 through 3.12.
3535

3636
- Django: 2.x, 3.x and 4.x.
3737

3838
- Coverage.py: 6.x or higher.
3939

4040
The plugin is pip installable::
4141

42-
$ pip install django_coverage_plugin
42+
$ python3 -m pip install django_coverage_plugin
4343

4444
To run it, add this setting to your ``.coveragerc`` file::
4545

@@ -128,7 +128,7 @@ Tests
128128

129129
To run the tests::
130130

131-
$ pip install -r requirements.txt
131+
$ python3 -m pip install -r requirements.txt
132132
$ tox
133133

134134

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def read(*names, **kwargs):
3333
Programming Language :: Python :: 3.9
3434
Programming Language :: Python :: 3.10
3535
Programming Language :: Python :: 3.11
36+
Programming Language :: Python :: 3.12
3637
Programming Language :: Python :: Implementation :: CPython
3738
Programming Language :: Python :: Implementation :: PyPy
3839
Topic :: Software Development :: Quality Assurance

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ envlist =
1818
py39-django{22,32,42}-cov{6,7,tip},
1919
py310-django{32,42,tip}-cov{6,7,tip},
2020
py311-django{42,tip}-cov{6,7,tip},
21+
py312-django{tip}-cov{7,tip},
2122
check,pkgcheck,doc
2223

2324
[testenv]
@@ -76,3 +77,4 @@ python =
7677
3.9: py39
7778
3.10: py310
7879
3.11: py311
80+
3.12: py312

0 commit comments

Comments
 (0)