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: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A `coverage.py`_ plugin to measure the coverage of Django templates.

Supported Python versions are 2.7, 3.4, 3.5 and 3.6.

Supported Django versions are 1.8 through 1.11b1.
Supported Django versions are 1.8 through 1.11.

Supported coverage.py versions are 4.0 and higher.

Expand Down Expand Up @@ -59,6 +59,10 @@ plural text, so both are marked as used if the tag is used.
Changes
~~~~~~~

v1.5.1a --- 2017-04-05
---------------------

Validates support for Django version 1.11. Testing for new package maintainer Pamela McA'Nulty

v1.5.0 --- 2017-02-23
---------------------
Expand Down
5 changes: 5 additions & 0 deletions howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

- Version number in setup.py
- Classifiers in setup.py
https://pypi.python.org/pypi?%3Aaction=list_classifiers
eg:
Development Status :: 3 - Alpha
Development Status :: 5 - Production/Stable
- Copyright date in NOTICE.txt
- Update README.rst with latest changes
- Update README.rst with latest changes
- Kits:
$ make kit
$ make kit_upload
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Development Status :: 5 - Production/Stable
Development Status :: 3 - Alpha
"""

setup(
name='django_coverage_plugin',
version='1.5.0',
version='1.5.1a',
description='Django template coverage.py plugin',
author='Ned Batchelder',
author_email='ned@nedbatchelder.com',
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
#

[tox]
# Don't test 'tip' on python27!
envlist =
py27-django{18,19,110,110tip,111tip},
py34-django{18,19,110,110tip,111tip,tip},
py35-django{18,19,110,110tip,111tip,tip},
py36-django{18,19,110,110tip,111tip,tip},
py27-django{18,19,110,111,111tip},
py34-django{18,19,110,111,111tip,tip},
py35-django{18,19,110,111,111tip,tip},
py36-django{18,19,110,111,111tip,tip},
check,doc

[testenv]
Expand All @@ -26,7 +27,7 @@ deps =
django18: Django >=1.8, <1.9
django19: Django >=1.9, <1.10
django110: Django >=1.10, <1.11
django110tip: https://github.com/django/django/archive/stable/1.10.x.tar.gz
django111: Django >=1.11, <2.0
django111tip: https://github.com/django/django/archive/stable/1.11.x.tar.gz
djangotip: https://github.com/django/django/archive/master.tar.gz

Expand Down