django-baker
django-baker copied to clipboard
Django 3.0 support
I had this error:
File "/home/username/.local/lib/python3.7/site-packages/django_baker/bakery.py", line 10, in <module>
from django.utils.six import iteritems
ModuleNotFoundError: No module named 'django.utils.six'
i changed it into
from six import iteritems
and now it works.
Can confirm that this fixes things.
Also in admin.py from django.core.exceptions import FieldDoesNotExist
needs to replace from jango.db.models.fields import FieldDoesNotExist
Please see and approve https://github.com/krisfields/django-baker/pull/26
I've taken to reviewing pull requests to @krisfields django-baker and mannually mirroring them to my https://github.com/opencoca/django-baker