Skip to content

Commit

Permalink
[deps] Update allauth to 0.60.0 #370
Browse files Browse the repository at this point in the history
  • Loading branch information
arup1221 committed Feb 26, 2024
1 parent 13e6a87 commit 92c362c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openwisp_users/accounts/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
if app_settings.SOCIALACCOUNT_ENABLED:
urlpatterns += [path('social/', include('allauth.socialaccount.urls'))]

for provider in providers.registry.get_list():
for provider in providers.registry.get_class_list():
try:
prov_mod = import_module(provider.get_package() + '.urls')
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
django-organizations~=2.1.0
django-extensions~=3.2.2
django-allauth~=0.54.0
django-allauth~=0.60.0
django-phonenumber-field~=6.1.0
phonenumbers~=8.13.0
openwisp-utils[rest,celery] @ https://github.com/openwisp/openwisp-utils/tarball/master
Expand Down
1 change: 1 addition & 0 deletions tests/openwisp2/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'openwisp_users.middleware.PasswordExpirationMiddleware',
'allauth.account.middleware.AccountMiddleware',
]

AUTH_PASSWORD_VALIDATORS = [
Expand Down

0 comments on commit 92c362c

Please sign in to comment.