48👍
✅
sqlparse latest version was released today and it’s not compatible with django-debug-toolbar version 1.4, Django version 1.9
workaround is force pip to install sqlparse==0.1.19
9👍
the latest version of sqlparse
is not compatible with django-debug-toolbar==1.4
.
Your choices are:
- upgrade
django-debug-toolbar
to1.5
- force install
sqlparse==0.1.19
- [Django]-Django Query __isnull=True or = None
- [Django]-Object does not support item assignment error
- [Django]-Understanding Django-LDAP authentication
3👍
@Rex Salisbury
That’s not correct.
You have to install
django-debug-toolbar==1.5
sqlparse==0.2.0
or
django-debug-toolbar==1.4
sqlparse==0.1.19
Tested on Cloud9, with django 1.9.2
- [Django]-How to debug Jinja2 template?
- [Django]-Django: Error: Unknown command: 'makemigrations'
- [Django]-How to use permission_required decorators on django class-based views
0👍
Sorry,but for me, with Django 1.8.11, it only worked with this:
django-debug-toolbar==1.5
sqlparse==0.2.1
- [Django]-How to get GET request values in Django Templates?
- [Django]-What does error mean? : "Forbidden (Referer checking failed – no Referer.):"
- [Django]-VueJS + Django Channels
Source:stackexchange.com