Skip to content

Commit 8d66fbf

Browse files
author
Pamela McA'Nulty
authored
Merge pull request #42 from PamelaM/pm/support_dj11_cov44
Update tox to support 111
2 parents d40d7e3 + 65b58ce commit 8d66fbf

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

README.rst

Lines changed: 5 additions & 1 deletion
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.11b1.
17+
Supported Django versions are 1.8 through 1.11.
1818

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

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

62+
v1.5.1a --- 2017-04-05
63+
---------------------
64+
65+
Validates support for Django version 1.11. Testing for new package maintainer Pamela McA'Nulty
6266

6367
v1.5.0 --- 2017-02-23
6468
---------------------

howto.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22

33
- Version number in setup.py
44
- Classifiers in setup.py
5+
https://pypi.python.org/pypi?%3Aaction=list_classifiers
6+
eg:
7+
Development Status :: 3 - Alpha
8+
Development Status :: 5 - Production/Stable
59
- Copyright date in NOTICE.txt
610
- Update README.rst with latest changes
11+
- Update README.rst with latest changes
712
- Kits:
813
$ make kit
914
$ make kit_upload

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
Programming Language :: Python :: Implementation :: PyPy
1818
Topic :: Software Development :: Quality Assurance
1919
Topic :: Software Development :: Testing
20-
Development Status :: 5 - Production/Stable
20+
Development Status :: 3 - Alpha
2121
"""
2222

2323
setup(
2424
name='django_coverage_plugin',
25-
version='1.5.0',
25+
version='1.5.1a',
2626
description='Django template coverage.py plugin',
2727
author='Ned Batchelder',
2828
author_email='[email protected]',

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313
#
1414

1515
[tox]
16+
# Don't test 'tip' on python27!
1617
envlist =
17-
py27-django{18,19,110,110tip,111tip},
18-
py34-django{18,19,110,110tip,111tip,tip},
19-
py35-django{18,19,110,110tip,111tip,tip},
20-
py36-django{18,19,110,110tip,111tip,tip},
18+
py27-django{18,19,110,111,111tip},
19+
py34-django{18,19,110,111,111tip,tip},
20+
py35-django{18,19,110,111,111tip,tip},
21+
py36-django{18,19,110,111,111tip,tip},
2122
check,doc
2223

2324
[testenv]
@@ -26,7 +27,7 @@ deps =
2627
django18: Django >=1.8, <1.9
2728
django19: Django >=1.9, <1.10
2829
django110: Django >=1.10, <1.11
29-
django110tip: https://github.com/django/django/archive/stable/1.10.x.tar.gz
30+
django111: Django >=1.11, <2.0
3031
django111tip: https://github.com/django/django/archive/stable/1.11.x.tar.gz
3132
djangotip: https://github.com/django/django/archive/master.tar.gz
3233

0 commit comments

Comments
 (0)