requirements: Bump python-social-auth version.

We had a bunch of ugly hacks to monkey patch things due to upstream
being temporarily unmaintained and not merging PRs. Now the project is
active again and the fixes have been merged and included in the latest
version - so we clean up all that code.
This commit is contained in:
Mateusz Mandera
2020-03-18 13:35:23 +01:00
committed by Tim Abbott
parent 1a994821fc
commit f5e95c4fc1
8 changed files with 26 additions and 84 deletions

View File

@@ -225,10 +225,6 @@ SILENCED_SYSTEM_CHECKS = [
# backends support the username not being unique; and they do.
# See: https://docs.djangoproject.com/en/2.2/topics/auth/customizing/#django.contrib.auth.models.CustomUser.USERNAME_FIELD
"auth.W004",
# urls.W003 warns against using colons in the name in url(..., name) because colons are used
# for namespaces. We need to override a url entry in the social: namespace, so we use
# the colon in this way intentionally.
"urls.W003",
]
########################################################################