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
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ contributions by:

Andrew Pinkham
Aron Griffis
Bruno Alla
Emil Madsen
Federico Bond
Jessamyn Smith
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
History
=======

v1.7.0 --- 2020-01-16
---------------------

Add support for:

- Python 3.7 & 3.8
- Django 2.2 & 3.0

v1.6.0 --- 2018-09-04
---------------------
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2015-2018 Ned Batchelder. All rights reserved.
Copyright 2015-2020 Ned Batchelder. All rights reserved.

Except where noted otherwise, this software is licensed under the Apache
License, Version 2.0 (the "License"); you may not use this work except in
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Supported Python versions: 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.

Supported Django versions: 1.8, 1.11, 2.0, 2.1, 2.2 and 3.0.

Supported coverage.py versions are 4.0 and higher.
Supported coverage.py version 4.x . Support for version 5 is on the way!

The plugin is pip installable::

Expand Down
2 changes: 1 addition & 1 deletion howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Development Status :: 5 - Production/Stable
- Copyright date in NOTICE.txt
- Update README.rst with latest changes
- Update README.rst with latest changes
- Update HISTORY.rst with latest changes
- Kits:
$ make kit
$ make kit_upload
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def read(*names, **kwargs):

setup(
name='django_coverage_plugin',
version='1.6.0',
version='1.7.0',
description='Django template coverage.py plugin',
long_description=(
re.compile(
Expand Down
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

[tox]
envlist =
py27-django{18,19,110,111,111tip},
py34-django{18,19,110,111,111tip,20},
py35-django{18,19,110,111,111tip,20,21,22},
py36-django{18,19,110,111,111tip,20,21,22,30,tip},
py27-django{18,19,110,111},
py34-django{18,19,110,111,20},
py35-django{18,19,110,111,20,21,22},
py36-django{18,19,110,111,20,21,22,30,tip},
py37-django{20,21,22,30,tip},
py38-django{22,30,tip},
check,pkgcheck,doc
Expand All @@ -29,7 +29,6 @@ deps =
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<2.0
django111tip: https://github.com/django/django/archive/stable/1.11.x.tar.gz
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
Expand Down