]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
requirements: Update django debug toolbar to 1.5
authorStephen Finucane <stephenfinucane@hotmail.com>
Sun, 21 Aug 2016 17:06:55 +0000 (18:06 +0100)
committerStephen Finucane <stephenfinucane@hotmail.com>
Thu, 1 Sep 2016 21:03:14 +0000 (22:03 +0100)
This is the latest version. This breaks compatibility with Django 1.7,
but this version is unsupported and should not be used for development.
We do, however, continue to test support for Django 1.7 and 1.6.

This also prevents the need to manually track sqlparse dependency [1].

[1] https://github.com/jazzband/django-debug-toolbar/issues/856

Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
patchwork/settings/dev.py
requirements-test.txt

index b78a0bfeb0c8909adc1a1ef4f85618bffc12d662..60f52b1af59142c460ee8de002909880d98735af 100644 (file)
@@ -65,7 +65,7 @@ PASSWORD_HASHERS = ['django.contrib.auth.hashers.MD5PasswordHasher']
 
 # django-debug-toolbar
 
-if django.VERSION >= (1, 7):
+if django.VERSION >= (1, 8):
     INSTALLED_APPS += [
         'debug_toolbar'
     ]
index cfc242f647f821e44de54e66b5d210646a846e6a..47c85b1657a198e3de9a264c420192a4ec632920 100644 (file)
@@ -1,5 +1,5 @@
 mysqlclient==1.3.7  # replace this with psycopg2 for a PostgreSQL backend
-django-debug-toolbar==1.4
+django-debug-toolbar==1.5
 python-dateutil>2.0,<3.0
 selenium>2.0,<3.0
 djangorestframework>=3.3,<3.4