From 689f78d03be884d60ee26fcf695ce136269d9bd7 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Tue, 4 Oct 2016 20:31:39 +0200 Subject: [PATCH] Fix incompatibility with sqlparse and debug-toolbar Thanks to @flaviabastos for reporting this in #259. I think the issue is solved by higher versions of sqlparse in general, but without further testing, version pinning is probably the safest option. --- src/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requirements/dev.txt b/src/requirements/dev.txt index 6567a61d3..c49471a24 100644 --- a/src/requirements/dev.txt +++ b/src/requirements/dev.txt @@ -1,5 +1,5 @@ django-debug-toolbar==1.5 -sqlparse==0.1.19 # not yet supported by django-debug-toolbar 1.4 +sqlparse==0.2.1 # pinned due to difficulties with django-debug-toolbar # Testing requirements pep8==1.5.7 # exact requirement by flake8 2.4.0 pyflakes==1.1.0 # later version causes problems currently