From e97bd5ca0e8e3334e8402a71af8ebc2342da83ef Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sun, 24 Jun 2018 20:55:50 +0100 Subject: Remove support for Django 1.8, 1.9, 1.10 These are now all EOL and Debian Testing supports Django 1.11 (LTS). We can and should drop them. This change does not remove the many compat wrappers. These will be removed separately (there are a lot of them). This leaves 1.11 as the only supported version. This will be remedied shortly with the inclusion of Django 2.0 support. Signed-off-by: Stephen Finucane Signed-off-by: Daniel Axtens --- tox.ini | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 9aac824..5f3d7e7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,20 +1,14 @@ [tox] minversion = 2.0 -envlist = pep8,docs,py{27,34,35}-django{18,19,110,111},py36-django111 +envlist = pep8,docs,py{27,34,35,36}-django111 skipsdist = True [testenv] deps = -r{toxinidir}/requirements-test.txt - 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}: djangorestframework>=3.4,<3.7 - django110: djangorestframework>=3.4,<3.9 django111: djangorestframework>=3.6,<3.9 - django18: django-filter>=1.0,<1.1 - django{19,110,111}: django-filter>=1.0,<1.2 + django111: django-filter>=1.0,<1.2 setenv = DJANGO_SETTINGS_MODULE = patchwork.settings.dev PYTHONDONTWRITEBYTECODE = 1 -- cgit v1.2.3