[PATCH 17/19] tox: Add Django 1.11

Stephen Finucane stephen at that.guru
Thu May 11 05:45:26 AEST 2017


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 at that.guru>
---
 tox.ini | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tox.ini b/tox.ini
index 0c18eae..aa57744 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
-- 
2.9.3



More information about the Patchwork mailing list