7👍
✅
Its a problem with the latest version of allauth, dj_rest_auth is not compatible yet.
Change your allauth version on your pipfile to 0.54.0
django-allauth = "==0.54.0"
- [Django]-Successful Django Deploy Through AWS Elastic Beanstalk, But Getting 500 ERROR
- [Django]-Django Gunicorn – gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
- [Django]-How can I get all objects a user has specific permissions to in django guardian?
- [Django]-IPN delivery failed. HTTP error code 403: Forbidden
- [Django]-Asterisk in django forms validation messages
1👍
Happened the same after upgrading allauth from 0.54 to 0.58.2 .
I had to upgrade dj_rest_auth, to version 5.0.2. Now it’s working again for me.
0👍
There is a try in imports section in this file site-
packages\dj_rest_auth\registration\serializers.py
Delete it and you will realize that the library is broken.
- [Django]-Exception while installing packages in Python
- [Django]-Django Rest Framework doesn't accept ArrayField POST
- [Django]-Conditional nested filters in Django
Source:stackexchange.com