Skip to content

Commit 8bd2b25

Browse files
author
Pamela McA'Nulty
committed
Update version numbers
1 parent 3b26dc6 commit 8bd2b25

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A `coverage.py`_ plugin to measure the coverage of Django templates.
1414
1515
Supported Python versions are 2.7, 3.4, 3.5 and 3.6.
1616

17-
Supported Django versions are 1.8 through 1.11a1.
17+
Supported Django versions are 1.8 through 1.11b1.
1818

1919
Supported coverage.py versions are 4.0 and higher.
2020

@@ -59,6 +59,12 @@ plural text, so both are marked as used if the tag is used.
5959
Changes
6060
~~~~~~~
6161

62+
63+
v1.4.3 --- 2017-02-22
64+
---------------------
65+
66+
Removes support for Django versions below 1.8. Validates support for Django version 1.11b1
67+
6268
v1.4.2 --- 2017-02-06
6369
---------------------
6470

@@ -177,7 +183,7 @@ To run the tests::
177183
.. |versions| image:: https://img.shields.io/pypi/pyversions/django_coverage_plugin.svg
178184
:target: https://pypi.python.org/pypi/django_coverage_plugin
179185
:alt: Python versions supported
180-
.. |djversions| image:: https://img.shields.io/badge/Django-1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10-44b78b.svg
186+
.. |djversions| image:: https://img.shields.io/badge/Django-1.8, 1.9, 1.10, 1.11.svg
181187
:target: https://pypi.python.org/pypi/django_coverage_plugin
182188
:alt: Django versions supported
183189
.. |status| image:: https://img.shields.io/pypi/status/django_coverage_plugin.svg

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
setup(
2424
name='django_coverage_plugin',
25-
version='1.4.2',
25+
version='1.4.3',
2626
description='Django template coverage.py plugin',
2727
author='Ned Batchelder',
2828
author_email='[email protected]',
2929
url='https://github.com/nedbat/django_coverage_plugin',
3030
packages=['django_coverage_plugin'],
3131
install_requires=[
32-
'Django >= 1.4',
32+
'Django >= 1.8',
3333
'coverage >= 4.0',
3434
'six >= 1.4.0',
3535
],

tests/plugin_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def run_django_coverage(
107107
str: the text produced by the template.
108108
109109
"""
110-
use_real_context = (django.VERSION < (1, 8))
110+
use_real_context = False
111111

112112
if options is None:
113113
options = {'source': ["."]}

0 commit comments

Comments
 (0)