diff --git a/README.rst b/README.rst index a478e13..a329e60 100644 --- a/README.rst +++ b/README.rst @@ -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. @@ -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 --------------------- diff --git a/howto.txt b/howto.txt index 7638911..7d8ece8 100644 --- a/howto.txt +++ b/howto.txt @@ -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 diff --git a/setup.py b/setup.py index 4618ce5..ea5d044 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tox.ini b/tox.ini index 8c34258..f9ae3fc 100644 --- a/tox.ini +++ b/tox.ini @@ -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] @@ -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