-
-
Notifications
You must be signed in to change notification settings - Fork 296
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
apps.py: Attempted relative import with no known parent package #249
Comments
Is no one else experiencing this? I just hit it again with a fresh project. Would a simple PR be accepted with the change above? |
I have this error too. And after I fix the error by ur way,it raise an other error:
|
I also experienced the issue on django 1.11 and python 3.6.1 My solution was to put django_q as the last item in installed apps
|
I didn't see a PR for this, since I'm doing some updates. I'll see if I can fix some of the relative imports in the code for the next release. |
Closing this issue because #264 has been merged. |
Attempting to run
migrate
on a fresh pip install in Django 1.10.7, I got the errorI was able to fix this by directly editing
django_q/apps.py
and changing:from .conf import Conf
to
from django_q.conf import Conf
I'd do a PR for this, but am not quite sure of what's going on since no one else seems to be experiencing it. Theories?
The text was updated successfully, but these errors were encountered: