summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-05-19 15:53:25 +0100
committerStephen Finucane <stephen@that.guru>2017-12-03 20:54:46 +0000
commitc6ee0552bd9e876a2313f5b118fd1e36208a6f21 (patch)
tree78ec89a5cb7376799c1f07a9f36c9d7203392ba9
parentda72db5d8a3d27092567a19219bd48c33ab8dbc4 (diff)
downloadpatchwork-c6ee0552bd9e876a2313f5b118fd1e36208a6f21.tar
patchwork-c6ee0552bd9e876a2313f5b118fd1e36208a6f21.tar.gz
tox: Add Django 1.11
Add support for the latest release of Django, 1.11. This is the next LTS release (1.8 being the last one), so it's particularly important that we maintain support for this going forward. While neither the latest releases of django-rest-framework nor that of django-filter explicitly support Django 1.11, it appears that they are functional [1][2]. We can bump these packages separately when new versions are released. [1] https://github.com/encode/django-rest-framework/issues/5108 [2] https://github.com/carltongibson/django-filter/commit/1243ff7e Signed-off-by: Stephen Finucane <stephen@that.guru> Tested-by: Daniel Axtens <dja@axtens.net>
-rw-r--r--tox.ini6
1 files changed, 4 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 3ae660b..976789e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.0
-envlist = pep8,py{27,34}-django{16,17,18,19,110},py35-django{18,19,110}
+envlist = pep8,py{27,34}-django{16,17,18,19,110,111},py35-django{18,19,110,111}
skipsdist = True
[testenv]
@@ -15,8 +15,10 @@ deps =
django18: django>=1.8,<1.9
django19: django>=1.9,<1.10
django110: django>=1.10,<1.11
+ django111: django>=1.11,<2.0
django{18,19,110}: djangorestframework>=3.4,<3.7
- django{18,19,110}: django-filter>=1.0,<1.1
+ django111: djangorestframework>=3.6,<3.7
+ django{18,19,110,111}: django-filter>=1.0,<1.1
setenv =
DJANGO_SETTINGS_MODULE = patchwork.settings.dev
PYTHONDONTWRITEBYTECODE = 1