-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix Django 1.10 Deprecation Warning "SubfieldBase has been deprecated." #813
Conversation
…ssages from Django 1.9.
Thank you for the PR, someone can review and merge it ? |
Some news ? |
? |
+1 |
+1 |
Please stop +1'ing without providing some input/findings/patch. FWIW, you can use something like the following to filter out warnings unrelated to your project:
|
@blueyed this is the patch... just showing that there is interest (github lacks voting). |
@yprez It was meant more in general. And regarding your comment (which were actually 2, so two emails for maintainers), it would be better to add it to the duplicate issues and reference this one from there, clearing stating that it's a dupe / fixed by this PR - so it can be easily triaged. |
Is there anything I can clarify or add to get this PR merged? |
+1 |
Where i have to add "def filter_deprecation_warnings(record):" in my project??? |
Hi, I also have the Bug with Django 1.9.2. But I still have the Bug. Should I use Django 1.10? Or Can I solve this Bug on Django 1.9? Thank you. |
Hi, I also have this bug, and I tried fix it. You can do exception in 2016-02-20 9:57 GMT+09:00 yamashitadesu notifications@github.com:
// Васильев Петр Алексеевич |
I have no idea why nobody wants to merge it. Really. |
Me too, it is really bad problem for me 2016-02-20 19:38 GMT+09:00 Laville Augustin notifications@github.com:
// Васильев Петр Алексеевич |
Could you review and merge this, please, @omab? If you do not have the time to do this, please consider granting me write access to this repo. I can ensure you that I will assist you in bug triage, pull request review/merge, and the other maintenance tasks related to providing quality code to the world. |
Can it be also updated on pip repository? |
When I change this line manually and try to use Google auth, I get Error:
Without this change everything works fine. |
@AlbertPuchala What was the modification you made? I believe I have to add |
@hellvix Thanks, now it works :). |
@AlbertPuchala It should, but I believe @omab is really busy. He hasn't been updating the stuff we have around. |
Any progress on this? |
Sorry about the delay, I'm very busy but slowly catching up with all the PRs proposed. Thanks! |
Should have been fixed. Update your version and let us know here the @hellvix https://github.com/hellvix was the fix added? I have the same — |
This warning in Django 1.9 may be a red herring. I did have it and migrated to 1.10 without any problems. If you are on 1.9 and the warning holds you back, just give it a try to migrate to 1.10 (and run your tests ;-) ) |
I have migrated to 1.10 and still facing the same issue :
|
Removed metaclass syntax to break the dependency on django.db.models.SubfieldBase, which has been deprecated in Django 1.9 and will be removed with Django 1.10.
Fixes #804 and #754. Extends fix provided by #806.