-
-
Notifications
You must be signed in to change notification settings - Fork 380
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 missing 'jose' module #427
Comments
Caused by python-social-auth/social-core#590 which makes Facebook backend require openidconnect deps, what was not the case before. Possible solutions:
I think splitting Facebook auth or addding jose are the least intrusive solution for now. |
Assuming the quoted solution means replacing |
Yes, that's why I prefer a solution in social-core as that would address the issue for all users, not just for social-app-django. |
Expected behaviour
I expect all the required packages to be installed after updating to version 5.1.0.
Actual behaviour
I get
ModuleNotFoundError - no module named 'jose'
after updating to version 5.1.0 (the same error has been reported in the CI server).What are the steps to reproduce this issue?
social-app-django
.Any logs, error output, etc?
The stack trace was copied from: https://github.com/python-social-auth/social-app-django/actions/runs/4429665435/jobs/7770411435
Any other comments?
It seems the error only comes up if social-auth-core version 4.4.4 is installed. A possible workaround would be pinning social-auth-core to an older version instead i.e.
social-auth-core>=4.3,<4.4
.The text was updated successfully, but these errors were encountered: