django-angular
django-angular copied to clipboard
Django 3.0 Error: ImportError raised when trying to load 'djng.templatetags.djng_tags': cannot import name 'six'
Django removed 'six' I'm not sure what to replace it with in the import. Error: ImportError raised when trying to load 'djng.templatetags.djng_tags': cannot import name 'six'
I can fix that. It boils down to
- remove all
from __future__ import unicode_literals
- remove
six
- replace against
super()
and drop support for Python-2 - which ends its lifecycle on 2020-01-01 anyway
So I could do that with the installed version I've got then or should I just wait for an update?
@SilverStrings024 creating a pull request would speed up things.
@jrief What branch do I use?