-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
importlib issue after installing django 1.11 #81
Comments
@dakoto747 this package is very much unmaintained since Django 1.7. I have plans to build something like this for modern django, but that's pretty far into the future on my roadmap |
So sorry for the late reply. Thanks for letting me know. |
No worries! |
@kavdev which package do you recommend then? I'm using:
with python3, just trying to implement mongodb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get the following error everytime I try to run the server after upgrading to django to version 1.11.
..../models.py", line 5, in
from djangotoolbox.fields import ListField
File "/anaconda/lib/python2.7/site-packages/djangotoolbox/fields.py", line 4, in
from django.utils.importlib import import_module
ImportError: No module named importlib
after a little research, I found out "django.utils.importlib is a compatibility library for when Python 2.6 was still supported. It has been obsolete since Django 1.7, which dropped support for Python 2.6, and is removed in 1.9 per the deprecation cycle." source
but when I tried running the server afterwards, I got this error:
from djangotoolbox.fields import ListField
File "/anaconda/lib/python2.7/site-packages/djangotoolbox/fields.py", line 6, in
from django.db.models.fields.subclassing import Creator
ImportError: No module named subclassing
can anyone help please?
The text was updated successfully, but these errors were encountered: