Skip to content

Commit da8fcf4

Browse files
authored
Merge pull request #7 from FlipperPA/tox-current-django-versions
Tox: current Django versions
2 parents 3e619c9 + 5b15f35 commit da8fcf4

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Automated code metrics:
3434
``click`` command line library.
3535

3636
* Free software: MIT license
37-
* Documentation: http://django-click.rtfd.org (TODO)
38-
* Compatible with Django 1.4, 1.5, 1.6, 1.7 and 1.8, running on Python 2.7, 3.4 and PyPy
37+
* Documentation for the Click command line library: http://click.pocoo.org/6/
38+
* Compatible with Django 1.8, 1.10, and 1.11, running on Python 2.7, 3.4, 3.5, 3.6 and PyPy.
3939

4040

4141
Installation
@@ -60,7 +60,7 @@ class, just put a ``djclick`` command into
6060
@click.command()
6161
@click.argument('name')
6262
def command(name):
63-
click.secho('Hello, {}'.format(name), fg='red')
63+
click.secho('Hello, {}'.format(name), fg='red')
6464
6565
And then call the command with::
6666

tox.ini

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
toxworkdir = {homedir}/.toxenvs/django-click
66
envlist =
77
coverage_erase,
8-
py{27,py}-dj14,
9-
py{27,34,py}-dj{15,16,17,18,19},
10-
py35-dj{18,19},
8+
py{27,34,35,py}-dj{18,110},
9+
py{27,34,35,36,py}-dj{111},
1110
flake8,
1211
coverage_report
1312

@@ -19,12 +18,9 @@ setenv =
1918
PYTHONPATH={toxinidir}/djclick/test/testprj
2019
deps =
2120
-rrequirements-test.txt
22-
dj14: django>=1.4,<1.5
23-
dj15: django>=1.5,<1.6
24-
dj16: django>=1.6,<1.7
25-
dj17: django>=1.7,<1.8
2621
dj18: django>=1.8,<1.9
27-
dj19: django>=1.9,<1.10
22+
dj110: django>=1.10,<1.11
23+
dj111: django>=1.11,<1.12
2824
commands = py.test -rxs --cov-report= --cov-append --cov djclick {posargs:djclick}
2925

3026
[testenv:coverage_erase]

0 commit comments

Comments
 (0)