-
Notifications
You must be signed in to change notification settings - Fork 95
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
Compatibility with Django 2.0 #85
Comments
Note: To get the old behavior (when using on_delete was allowed) we should use on_delete=models.CASCADE |
It is actually already a warning in 1.11 Let's do a PR for that :) |
@triat Any other compatibility issues for Django 2.0 that we need to address? |
I did an other PR for compatibility but not related to Django 2.0 #93 |
Thanks @triat I merged it in! |
User.is_anonymous() is no longer supported as method in Django 2.0 |
I'll check tomorrow if I can do an other PR, thanks @tored11 |
If I understand correctly |
@avelis |
@triat any updates on this issue? I am having the same issue |
@Ulad Not yet. The update is pretty straightforward. Just haven't had the time on hand to make a PR for review to do it. I suppose I could just edit the file directly though. |
@avelis yes I already did so. Thanks |
@avelis it seems it requires a bit more things to do (adapt tests) because if you just change it, everything crash. I started a branch to work on and add new tox tests with the new DRF and django2 |
I made the pull request for "bool" object is not callable... #99 |
Is there any workaround available for this until the fix is not provided? |
@luvpreetsingh You can try install the latest from source |
Thank you! |
We need to add the now required on_delete attribute to the user ForeignKey in the BaseAPIRequestLog.
The text was updated successfully, but these errors were encountered: