-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
changing order of django-filter and core api imports in compat #4601
Conversation
when using with django-filter and rest_framework_swagger need to import coreapi before django-filter as django filter tries to load rest_framework.coreapi which is undefined at this point
See also carltongibson/django-filter#525, carltongibson/django-filter#526. Additionally, if |
Great stuff, thanks! |
I try this but I can't resolve my issue.it's getting some |
The problem still persists. |
core API is deprecated now |
Any updates pls? I am facing the same problem after adding |
|
I just got this today, and am still getting it after upgrade.
my error is such:
|
@skamansam try replacing this version |
Description
when using with django-filter and rest_framework_swagger need to import coreapi before django-filter as django filter tries to load rest_framework.coreapi which is undefined at this point