From 2c12cb78a223ab6a17606f8864bbe530348c3622 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathieu=20Boy=C3=A9?= Date: Mon, 25 Jul 2016 14:39:32 +0200 Subject: [PATCH] Fix process() error Set version of sqlparse to 0.1.19 Used for debug_toolbar. Debug_toolbar with last version of debug_toolbar V1.3.2 doesn't work because of update sqlparse recently --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5852b3b7..6e28f1a1 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,8 @@ setup( 'django-environ', 'redis', 'Werkzeug', - 'django-dirtyfields' + 'django-dirtyfields', + 'sqlparse==0.1.19' ], tests_require=['pytest-django', 'pytest-cov', 'factory-boy'], # Provide a test command through django-setuptest -- 2.39.5