pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-django-allauth



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jul 10 15:53:45 UTC 2025

Modified Files:
        pkgsrc/www/py-django-allauth: Makefile PLIST distinfo

Log Message:
py-django-allauth: updated to 65.10.0

65.10.0 (2025-07-10)

Note worthy changes

- IdP: Added support for the device authorization grant.

- Headless: custom user payloads can now be properly reflected in the OpenAPI
  specification by provider a user ``dataclass``. See the newly introduced
  ``get_user_dataclass()`` and ``user_as_dataclass()`` adapter methods.

- Added a new signal (``authentication_step_completed``) that is emitted when an
  individual authentication step is completed.

- MFA: Added a setting (``MFA_ALLOW_UNVERIFIED_EMAIL``) to allow unverified
  email addresses in combination with MFA.

Backwards incompatible changes

- Soundcloud: as per https://developers.soundcloud.com/blog/urn-num-to-string,
  the provider now uses the user ``urn`` instead of the ``id`` as the ID for
  social accounts. This change is backward incompatible. Instructions on
  how to migrate existing social accounts can be found in the allauth provider
  documentation for SoundCloud.

Fixes

- Phone: The recently added support for phone (SMS) authentication did fully integrate
  with third-party provider signups. For example, whether or not the phone
  number is required was not respected during signup. Fixed.

- IdP: Token revocation failed when a single ``token_type_hint`` was passed,
  fixed.

- The ``verified_email_required`` decorator did not support email verification
  by code. Additionally, it did not rate limit verification emails
  in case of GET requests. Both are fixed.

- The account adapter ``clean_email()`` method was not called when a social account
  auto signup took place, fixed.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 pkgsrc/www/py-django-allauth/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/py-django-allauth/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/www/py-django-allauth/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-django-allauth/Makefile
diff -u pkgsrc/www/py-django-allauth/Makefile:1.21 pkgsrc/www/py-django-allauth/Makefile:1.22
--- pkgsrc/www/py-django-allauth/Makefile:1.21  Thu May 22 05:37:49 2025
+++ pkgsrc/www/py-django-allauth/Makefile       Thu Jul 10 15:53:45 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2025/05/22 05:37:49 adam Exp $
+# $NetBSD: Makefile,v 1.22 2025/07/10 15:53:45 adam Exp $
 
-DISTNAME=      django_allauth-65.8.1
+DISTNAME=      django_allauth-65.10.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/django-allauth/}

Index: pkgsrc/www/py-django-allauth/PLIST
diff -u pkgsrc/www/py-django-allauth/PLIST:1.15 pkgsrc/www/py-django-allauth/PLIST:1.16
--- pkgsrc/www/py-django-allauth/PLIST:1.15     Thu May 22 05:37:49 2025
+++ pkgsrc/www/py-django-allauth/PLIST  Thu Jul 10 15:53:45 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2025/05/22 05:37:49 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2025/07/10 15:53:45 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
@@ -47,6 +47,9 @@ ${PYSITELIB}/allauth/account/internal/__
 ${PYSITELIB}/allauth/account/internal/decorators.py
 ${PYSITELIB}/allauth/account/internal/decorators.pyc
 ${PYSITELIB}/allauth/account/internal/decorators.pyo
+${PYSITELIB}/allauth/account/internal/emailkit.py
+${PYSITELIB}/allauth/account/internal/emailkit.pyc
+${PYSITELIB}/allauth/account/internal/emailkit.pyo
 ${PYSITELIB}/allauth/account/internal/flows/__init__.py
 ${PYSITELIB}/allauth/account/internal/flows/__init__.pyc
 ${PYSITELIB}/allauth/account/internal/flows/__init__.pyo
@@ -92,9 +95,6 @@ ${PYSITELIB}/allauth/account/internal/fl
 ${PYSITELIB}/allauth/account/internal/stagekit.py
 ${PYSITELIB}/allauth/account/internal/stagekit.pyc
 ${PYSITELIB}/allauth/account/internal/stagekit.pyo
-${PYSITELIB}/allauth/account/internal/textkit.py
-${PYSITELIB}/allauth/account/internal/textkit.pyc
-${PYSITELIB}/allauth/account/internal/textkit.pyo
 ${PYSITELIB}/allauth/account/internal/userkit.py
 ${PYSITELIB}/allauth/account/internal/userkit.pyc
 ${PYSITELIB}/allauth/account/internal/userkit.pyo
@@ -166,75 +166,6 @@ ${PYSITELIB}/allauth/account/templatetag
 ${PYSITELIB}/allauth/account/templatetags/account.py
 ${PYSITELIB}/allauth/account/templatetags/account.pyc
 ${PYSITELIB}/allauth/account/templatetags/account.pyo
-${PYSITELIB}/allauth/account/tests/__init__.py
-${PYSITELIB}/allauth/account/tests/__init__.pyc
-${PYSITELIB}/allauth/account/tests/__init__.pyo
-${PYSITELIB}/allauth/account/tests/test_adapter.py
-${PYSITELIB}/allauth/account/tests/test_adapter.pyc
-${PYSITELIB}/allauth/account/tests/test_adapter.pyo
-${PYSITELIB}/allauth/account/tests/test_ajax.py
-${PYSITELIB}/allauth/account/tests/test_ajax.pyc
-${PYSITELIB}/allauth/account/tests/test_ajax.pyo
-${PYSITELIB}/allauth/account/tests/test_auth_backends.py
-${PYSITELIB}/allauth/account/tests/test_auth_backends.pyc
-${PYSITELIB}/allauth/account/tests/test_auth_backends.pyo
-${PYSITELIB}/allauth/account/tests/test_change_email.py
-${PYSITELIB}/allauth/account/tests/test_change_email.pyc
-${PYSITELIB}/allauth/account/tests/test_change_email.pyo
-${PYSITELIB}/allauth/account/tests/test_change_password.py
-${PYSITELIB}/allauth/account/tests/test_change_password.pyc
-${PYSITELIB}/allauth/account/tests/test_change_password.pyo
-${PYSITELIB}/allauth/account/tests/test_commands.py
-${PYSITELIB}/allauth/account/tests/test_commands.pyc
-${PYSITELIB}/allauth/account/tests/test_commands.pyo
-${PYSITELIB}/allauth/account/tests/test_decorators.py
-${PYSITELIB}/allauth/account/tests/test_decorators.pyc
-${PYSITELIB}/allauth/account/tests/test_decorators.pyo
-${PYSITELIB}/allauth/account/tests/test_email_verification.py
-${PYSITELIB}/allauth/account/tests/test_email_verification.pyc
-${PYSITELIB}/allauth/account/tests/test_email_verification.pyo
-${PYSITELIB}/allauth/account/tests/test_email_verification_by_code.py
-${PYSITELIB}/allauth/account/tests/test_email_verification_by_code.pyc
-${PYSITELIB}/allauth/account/tests/test_email_verification_by_code.pyo
-${PYSITELIB}/allauth/account/tests/test_login.py
-${PYSITELIB}/allauth/account/tests/test_login.pyc
-${PYSITELIB}/allauth/account/tests/test_login.pyo
-${PYSITELIB}/allauth/account/tests/test_login_by_code.py
-${PYSITELIB}/allauth/account/tests/test_login_by_code.pyc
-${PYSITELIB}/allauth/account/tests/test_login_by_code.pyo
-${PYSITELIB}/allauth/account/tests/test_logout.py
-${PYSITELIB}/allauth/account/tests/test_logout.pyc
-${PYSITELIB}/allauth/account/tests/test_logout.pyo
-${PYSITELIB}/allauth/account/tests/test_middleware.py
-${PYSITELIB}/allauth/account/tests/test_middleware.pyc
-${PYSITELIB}/allauth/account/tests/test_middleware.pyo
-${PYSITELIB}/allauth/account/tests/test_models.py
-${PYSITELIB}/allauth/account/tests/test_models.pyc
-${PYSITELIB}/allauth/account/tests/test_models.pyo
-${PYSITELIB}/allauth/account/tests/test_phone.py
-${PYSITELIB}/allauth/account/tests/test_phone.pyc
-${PYSITELIB}/allauth/account/tests/test_phone.pyo
-${PYSITELIB}/allauth/account/tests/test_ratelimit.py
-${PYSITELIB}/allauth/account/tests/test_ratelimit.pyc
-${PYSITELIB}/allauth/account/tests/test_ratelimit.pyo
-${PYSITELIB}/allauth/account/tests/test_reauthentication.py
-${PYSITELIB}/allauth/account/tests/test_reauthentication.pyc
-${PYSITELIB}/allauth/account/tests/test_reauthentication.pyo
-${PYSITELIB}/allauth/account/tests/test_reset_password.py
-${PYSITELIB}/allauth/account/tests/test_reset_password.pyc
-${PYSITELIB}/allauth/account/tests/test_reset_password.pyo
-${PYSITELIB}/allauth/account/tests/test_reset_password_by_code.py
-${PYSITELIB}/allauth/account/tests/test_reset_password_by_code.pyc
-${PYSITELIB}/allauth/account/tests/test_reset_password_by_code.pyo
-${PYSITELIB}/allauth/account/tests/test_security.py
-${PYSITELIB}/allauth/account/tests/test_security.pyc
-${PYSITELIB}/allauth/account/tests/test_security.pyo
-${PYSITELIB}/allauth/account/tests/test_signup.py
-${PYSITELIB}/allauth/account/tests/test_signup.pyc
-${PYSITELIB}/allauth/account/tests/test_signup.pyo
-${PYSITELIB}/allauth/account/tests/test_utils.py
-${PYSITELIB}/allauth/account/tests/test_utils.pyc
-${PYSITELIB}/allauth/account/tests/test_utils.pyo
 ${PYSITELIB}/allauth/account/urls.py
 ${PYSITELIB}/allauth/account/urls.pyc
 ${PYSITELIB}/allauth/account/urls.pyo
@@ -247,9 +178,6 @@ ${PYSITELIB}/allauth/account/views.pyo
 ${PYSITELIB}/allauth/app_settings.py
 ${PYSITELIB}/allauth/app_settings.pyc
 ${PYSITELIB}/allauth/app_settings.pyo
-${PYSITELIB}/allauth/conftest.py
-${PYSITELIB}/allauth/conftest.pyc
-${PYSITELIB}/allauth/conftest.pyo
 ${PYSITELIB}/allauth/core/__init__.py
 ${PYSITELIB}/allauth/core/__init__.pyc
 ${PYSITELIB}/allauth/core/__init__.pyo
@@ -265,27 +193,24 @@ ${PYSITELIB}/allauth/core/internal/__ini
 ${PYSITELIB}/allauth/core/internal/adapter.py
 ${PYSITELIB}/allauth/core/internal/adapter.pyc
 ${PYSITELIB}/allauth/core/internal/adapter.pyo
+${PYSITELIB}/allauth/core/internal/cryptokit.py
+${PYSITELIB}/allauth/core/internal/cryptokit.pyc
+${PYSITELIB}/allauth/core/internal/cryptokit.pyo
 ${PYSITELIB}/allauth/core/internal/httpkit.py
 ${PYSITELIB}/allauth/core/internal/httpkit.pyc
 ${PYSITELIB}/allauth/core/internal/httpkit.pyo
+${PYSITELIB}/allauth/core/internal/jwkkit.py
+${PYSITELIB}/allauth/core/internal/jwkkit.pyc
+${PYSITELIB}/allauth/core/internal/jwkkit.pyo
 ${PYSITELIB}/allauth/core/internal/modelkit.py
 ${PYSITELIB}/allauth/core/internal/modelkit.pyc
 ${PYSITELIB}/allauth/core/internal/modelkit.pyo
 ${PYSITELIB}/allauth/core/internal/ratelimit.py
 ${PYSITELIB}/allauth/core/internal/ratelimit.pyc
 ${PYSITELIB}/allauth/core/internal/ratelimit.pyo
-${PYSITELIB}/allauth/core/internal/tests/__init__.py
-${PYSITELIB}/allauth/core/internal/tests/__init__.pyc
-${PYSITELIB}/allauth/core/internal/tests/__init__.pyo
-${PYSITELIB}/allauth/core/internal/tests/test_httpkit.py
-${PYSITELIB}/allauth/core/internal/tests/test_httpkit.pyc
-${PYSITELIB}/allauth/core/internal/tests/test_httpkit.pyo
-${PYSITELIB}/allauth/core/internal/tests/test_modelkit.py
-${PYSITELIB}/allauth/core/internal/tests/test_modelkit.pyc
-${PYSITELIB}/allauth/core/internal/tests/test_modelkit.pyo
-${PYSITELIB}/allauth/core/internal/tests/test_ratelimit.py
-${PYSITELIB}/allauth/core/internal/tests/test_ratelimit.pyc
-${PYSITELIB}/allauth/core/internal/tests/test_ratelimit.pyo
+${PYSITELIB}/allauth/core/internal/urlkit.py
+${PYSITELIB}/allauth/core/internal/urlkit.pyc
+${PYSITELIB}/allauth/core/internal/urlkit.pyo
 ${PYSITELIB}/allauth/core/ratelimit.py
 ${PYSITELIB}/allauth/core/ratelimit.pyc
 ${PYSITELIB}/allauth/core/ratelimit.pyo
@@ -307,45 +232,6 @@ ${PYSITELIB}/allauth/headless/account/in
 ${PYSITELIB}/allauth/headless/account/response.py
 ${PYSITELIB}/allauth/headless/account/response.pyc
 ${PYSITELIB}/allauth/headless/account/response.pyo
-${PYSITELIB}/allauth/headless/account/tests/__init__.py
-${PYSITELIB}/allauth/headless/account/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/account/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_change_email.py
-${PYSITELIB}/allauth/headless/account/tests/test_change_email.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_change_email.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_change_password.py
-${PYSITELIB}/allauth/headless/account/tests/test_change_password.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_change_password.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification.py
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification_by_code.py
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification_by_code.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_email_verification_by_code.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_login.py
-${PYSITELIB}/allauth/headless/account/tests/test_login.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_login.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.py
-${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_login_by_code.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_phone.py
-${PYSITELIB}/allauth/headless/account/tests/test_phone.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_phone.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.py
-${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_reauthentication.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password.py
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password_by_code.py
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password_by_code.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_reset_password_by_code.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_session.py
-${PYSITELIB}/allauth/headless/account/tests/test_session.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_session.pyo
-${PYSITELIB}/allauth/headless/account/tests/test_signup.py
-${PYSITELIB}/allauth/headless/account/tests/test_signup.pyc
-${PYSITELIB}/allauth/headless/account/tests/test_signup.pyo
 ${PYSITELIB}/allauth/headless/account/urls.py
 ${PYSITELIB}/allauth/headless/account/urls.pyc
 ${PYSITELIB}/allauth/headless/account/urls.pyo
@@ -367,12 +253,6 @@ ${PYSITELIB}/allauth/headless/base/__ini
 ${PYSITELIB}/allauth/headless/base/response.py
 ${PYSITELIB}/allauth/headless/base/response.pyc
 ${PYSITELIB}/allauth/headless/base/response.pyo
-${PYSITELIB}/allauth/headless/base/tests/__init__.py
-${PYSITELIB}/allauth/headless/base/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/base/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/base/tests/test_views.py
-${PYSITELIB}/allauth/headless/base/tests/test_views.pyc
-${PYSITELIB}/allauth/headless/base/tests/test_views.pyo
 ${PYSITELIB}/allauth/headless/base/urls.py
 ${PYSITELIB}/allauth/headless/base/urls.pyc
 ${PYSITELIB}/allauth/headless/base/urls.pyo
@@ -382,9 +262,6 @@ ${PYSITELIB}/allauth/headless/base/views
 ${PYSITELIB}/allauth/headless/checks.py
 ${PYSITELIB}/allauth/headless/checks.pyc
 ${PYSITELIB}/allauth/headless/checks.pyo
-${PYSITELIB}/allauth/headless/conftest.py
-${PYSITELIB}/allauth/headless/conftest.pyc
-${PYSITELIB}/allauth/headless/conftest.pyo
 ${PYSITELIB}/allauth/headless/constants.py
 ${PYSITELIB}/allauth/headless/constants.pyc
 ${PYSITELIB}/allauth/headless/constants.pyo
@@ -397,24 +274,12 @@ ${PYSITELIB}/allauth/headless/contrib/ni
 ${PYSITELIB}/allauth/headless/contrib/ninja/security.py
 ${PYSITELIB}/allauth/headless/contrib/ninja/security.pyc
 ${PYSITELIB}/allauth/headless/contrib/ninja/security.pyo
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/__init__.py
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/test_security.py
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/test_security.pyc
-${PYSITELIB}/allauth/headless/contrib/ninja/tests/test_security.pyo
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/__init__.py
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/__init__.pyc
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/__init__.pyo
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/authentication.py
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/authentication.pyc
 ${PYSITELIB}/allauth/headless/contrib/rest_framework/authentication.pyo
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/__init__.py
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/test_authentication.py
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/test_authentication.pyc
-${PYSITELIB}/allauth/headless/contrib/rest_framework/tests/test_authentication.pyo
 ${PYSITELIB}/allauth/headless/internal/__init__.py
 ${PYSITELIB}/allauth/headless/internal/__init__.pyc
 ${PYSITELIB}/allauth/headless/internal/__init__.pyo
@@ -439,12 +304,6 @@ ${PYSITELIB}/allauth/headless/internal/r
 ${PYSITELIB}/allauth/headless/internal/sessionkit.py
 ${PYSITELIB}/allauth/headless/internal/sessionkit.pyc
 ${PYSITELIB}/allauth/headless/internal/sessionkit.pyo
-${PYSITELIB}/allauth/headless/internal/tests/__init__.py
-${PYSITELIB}/allauth/headless/internal/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/internal/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/internal/tests/test_authkit.py
-${PYSITELIB}/allauth/headless/internal/tests/test_authkit.pyc
-${PYSITELIB}/allauth/headless/internal/tests/test_authkit.pyo
 ${PYSITELIB}/allauth/headless/mfa/__init__.py
 ${PYSITELIB}/allauth/headless/mfa/__init__.pyc
 ${PYSITELIB}/allauth/headless/mfa/__init__.pyo
@@ -454,24 +313,6 @@ ${PYSITELIB}/allauth/headless/mfa/inputs
 ${PYSITELIB}/allauth/headless/mfa/response.py
 ${PYSITELIB}/allauth/headless/mfa/response.pyc
 ${PYSITELIB}/allauth/headless/mfa/response.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/__init__.py
-${PYSITELIB}/allauth/headless/mfa/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/test_recovery_codes.py
-${PYSITELIB}/allauth/headless/mfa/tests/test_recovery_codes.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/test_recovery_codes.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/test_totp.py
-${PYSITELIB}/allauth/headless/mfa/tests/test_totp.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/test_totp.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/test_trust.py
-${PYSITELIB}/allauth/headless/mfa/tests/test_trust.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/test_trust.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/test_views.py
-${PYSITELIB}/allauth/headless/mfa/tests/test_views.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/test_views.pyo
-${PYSITELIB}/allauth/headless/mfa/tests/test_webauthn.py
-${PYSITELIB}/allauth/headless/mfa/tests/test_webauthn.pyc
-${PYSITELIB}/allauth/headless/mfa/tests/test_webauthn.pyo
 ${PYSITELIB}/allauth/headless/mfa/urls.py
 ${PYSITELIB}/allauth/headless/mfa/urls.pyc
 ${PYSITELIB}/allauth/headless/mfa/urls.pyo
@@ -493,15 +334,6 @@ ${PYSITELIB}/allauth/headless/socialacco
 ${PYSITELIB}/allauth/headless/socialaccount/response.py
 ${PYSITELIB}/allauth/headless/socialaccount/response.pyc
 ${PYSITELIB}/allauth/headless/socialaccount/response.pyo
-${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.py
-${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/socialaccount/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.py
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.pyc
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_inputs.pyo
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.py
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.pyc
-${PYSITELIB}/allauth/headless/socialaccount/tests/test_views.pyo
 ${PYSITELIB}/allauth/headless/socialaccount/urls.py
 ${PYSITELIB}/allauth/headless/socialaccount/urls.pyc
 ${PYSITELIB}/allauth/headless/socialaccount/urls.pyo
@@ -516,15 +348,12 @@ ${PYSITELIB}/allauth/headless/spec/doc/o
 ${PYSITELIB}/allauth/headless/spec/internal/__init__.py
 ${PYSITELIB}/allauth/headless/spec/internal/__init__.pyc
 ${PYSITELIB}/allauth/headless/spec/internal/__init__.pyo
+${PYSITELIB}/allauth/headless/spec/internal/openapikit.py
+${PYSITELIB}/allauth/headless/spec/internal/openapikit.pyc
+${PYSITELIB}/allauth/headless/spec/internal/openapikit.pyo
 ${PYSITELIB}/allauth/headless/spec/internal/schema.py
 ${PYSITELIB}/allauth/headless/spec/internal/schema.pyc
 ${PYSITELIB}/allauth/headless/spec/internal/schema.pyo
-${PYSITELIB}/allauth/headless/spec/tests/__init__.py
-${PYSITELIB}/allauth/headless/spec/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/spec/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/spec/tests/test_views.py
-${PYSITELIB}/allauth/headless/spec/tests/test_views.pyc
-${PYSITELIB}/allauth/headless/spec/tests/test_views.pyo
 ${PYSITELIB}/allauth/headless/spec/urls.py
 ${PYSITELIB}/allauth/headless/spec/urls.pyc
 ${PYSITELIB}/allauth/headless/spec/urls.pyo
@@ -533,12 +362,6 @@ ${PYSITELIB}/allauth/headless/spec/views
 ${PYSITELIB}/allauth/headless/spec/views.pyo
 ${PYSITELIB}/allauth/headless/templates/headless/spec/redoc_cdn.html
 ${PYSITELIB}/allauth/headless/templates/headless/spec/swagger_cdn.html
-${PYSITELIB}/allauth/headless/tests/__init__.py
-${PYSITELIB}/allauth/headless/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/tests/test_tokens.py
-${PYSITELIB}/allauth/headless/tests/test_tokens.pyc
-${PYSITELIB}/allauth/headless/tests/test_tokens.pyo
 ${PYSITELIB}/allauth/headless/tokens/__init__.py
 ${PYSITELIB}/allauth/headless/tokens/__init__.pyc
 ${PYSITELIB}/allauth/headless/tokens/__init__.pyo
@@ -560,18 +383,99 @@ ${PYSITELIB}/allauth/headless/usersessio
 ${PYSITELIB}/allauth/headless/usersessions/response.py
 ${PYSITELIB}/allauth/headless/usersessions/response.pyc
 ${PYSITELIB}/allauth/headless/usersessions/response.pyo
-${PYSITELIB}/allauth/headless/usersessions/tests/__init__.py
-${PYSITELIB}/allauth/headless/usersessions/tests/__init__.pyc
-${PYSITELIB}/allauth/headless/usersessions/tests/__init__.pyo
-${PYSITELIB}/allauth/headless/usersessions/tests/test_views.py
-${PYSITELIB}/allauth/headless/usersessions/tests/test_views.pyc
-${PYSITELIB}/allauth/headless/usersessions/tests/test_views.pyo
 ${PYSITELIB}/allauth/headless/usersessions/urls.py
 ${PYSITELIB}/allauth/headless/usersessions/urls.pyc
 ${PYSITELIB}/allauth/headless/usersessions/urls.pyo
 ${PYSITELIB}/allauth/headless/usersessions/views.py
 ${PYSITELIB}/allauth/headless/usersessions/views.pyc
 ${PYSITELIB}/allauth/headless/usersessions/views.pyo
+${PYSITELIB}/allauth/idp/__init__.py
+${PYSITELIB}/allauth/idp/__init__.pyc
+${PYSITELIB}/allauth/idp/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/__init__.py
+${PYSITELIB}/allauth/idp/oidc/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/adapter.py
+${PYSITELIB}/allauth/idp/oidc/adapter.pyc
+${PYSITELIB}/allauth/idp/oidc/adapter.pyo
+${PYSITELIB}/allauth/idp/oidc/admin.py
+${PYSITELIB}/allauth/idp/oidc/admin.pyc
+${PYSITELIB}/allauth/idp/oidc/admin.pyo
+${PYSITELIB}/allauth/idp/oidc/app_settings.py
+${PYSITELIB}/allauth/idp/oidc/app_settings.pyc
+${PYSITELIB}/allauth/idp/oidc/app_settings.pyo
+${PYSITELIB}/allauth/idp/oidc/apps.py
+${PYSITELIB}/allauth/idp/oidc/apps.pyc
+${PYSITELIB}/allauth/idp/oidc/apps.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/__init__.py
+${PYSITELIB}/allauth/idp/oidc/contrib/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/__init__.py
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/security.py
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/security.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/ninja/security.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/__init__.py
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/authentication.py
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/authentication.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/authentication.pyo
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/permissions.py
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/permissions.pyc
+${PYSITELIB}/allauth/idp/oidc/contrib/rest_framework/permissions.pyo
+${PYSITELIB}/allauth/idp/oidc/forms.py
+${PYSITELIB}/allauth/idp/oidc/forms.pyc
+${PYSITELIB}/allauth/idp/oidc/forms.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/__init__.py
+${PYSITELIB}/allauth/idp/oidc/internal/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/clientkit.py
+${PYSITELIB}/allauth/idp/oidc/internal/clientkit.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/clientkit.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/__init__.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/authorization_codes.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/authorization_codes.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/authorization_codes.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/device_codes.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/device_codes.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/device_codes.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/request_validator.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/request_validator.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/request_validator.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/server.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/server.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/server.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/utils.py
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/utils.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/oauthlib/utils.pyo
+${PYSITELIB}/allauth/idp/oidc/internal/scope.py
+${PYSITELIB}/allauth/idp/oidc/internal/scope.pyc
+${PYSITELIB}/allauth/idp/oidc/internal/scope.pyo
+${PYSITELIB}/allauth/idp/oidc/migrations/0001_initial.py
+${PYSITELIB}/allauth/idp/oidc/migrations/0001_initial.pyc
+${PYSITELIB}/allauth/idp/oidc/migrations/0001_initial.pyo
+${PYSITELIB}/allauth/idp/oidc/migrations/0002_client_default_scopes.py
+${PYSITELIB}/allauth/idp/oidc/migrations/0002_client_default_scopes.pyc
+${PYSITELIB}/allauth/idp/oidc/migrations/0002_client_default_scopes.pyo
+${PYSITELIB}/allauth/idp/oidc/migrations/__init__.py
+${PYSITELIB}/allauth/idp/oidc/migrations/__init__.pyc
+${PYSITELIB}/allauth/idp/oidc/migrations/__init__.pyo
+${PYSITELIB}/allauth/idp/oidc/models.py
+${PYSITELIB}/allauth/idp/oidc/models.pyc
+${PYSITELIB}/allauth/idp/oidc/models.pyo
+${PYSITELIB}/allauth/idp/oidc/urls.py
+${PYSITELIB}/allauth/idp/oidc/urls.pyc
+${PYSITELIB}/allauth/idp/oidc/urls.pyo
+${PYSITELIB}/allauth/idp/oidc/views.py
+${PYSITELIB}/allauth/idp/oidc/views.pyc
+${PYSITELIB}/allauth/idp/oidc/views.pyo
+${PYSITELIB}/allauth/idp/urls.py
+${PYSITELIB}/allauth/idp/urls.pyc
+${PYSITELIB}/allauth/idp/urls.pyo
 ${PYSITELIB}/allauth/locale/ar/LC_MESSAGES/django.mo
 ${PYSITELIB}/allauth/locale/ar/LC_MESSAGES/django.po
 ${PYSITELIB}/allauth/locale/az/LC_MESSAGES/django.mo
@@ -689,18 +593,6 @@ ${PYSITELIB}/allauth/mfa/base/internal/_
 ${PYSITELIB}/allauth/mfa/base/internal/flows.py
 ${PYSITELIB}/allauth/mfa/base/internal/flows.pyc
 ${PYSITELIB}/allauth/mfa/base/internal/flows.pyo
-${PYSITELIB}/allauth/mfa/base/tests/__init__.py
-${PYSITELIB}/allauth/mfa/base/tests/__init__.pyc
-${PYSITELIB}/allauth/mfa/base/tests/__init__.pyo
-${PYSITELIB}/allauth/mfa/base/tests/test_trust.py
-${PYSITELIB}/allauth/mfa/base/tests/test_trust.pyc
-${PYSITELIB}/allauth/mfa/base/tests/test_trust.pyo
-${PYSITELIB}/allauth/mfa/base/tests/test_trust_fingerprint.py
-${PYSITELIB}/allauth/mfa/base/tests/test_trust_fingerprint.pyc
-${PYSITELIB}/allauth/mfa/base/tests/test_trust_fingerprint.pyo
-${PYSITELIB}/allauth/mfa/base/tests/test_views.py
-${PYSITELIB}/allauth/mfa/base/tests/test_views.pyc
-${PYSITELIB}/allauth/mfa/base/tests/test_views.pyo
 ${PYSITELIB}/allauth/mfa/base/urls.py
 ${PYSITELIB}/allauth/mfa/base/urls.pyc
 ${PYSITELIB}/allauth/mfa/base/urls.pyo
@@ -752,15 +644,6 @@ ${PYSITELIB}/allauth/mfa/recovery_codes/
 ${PYSITELIB}/allauth/mfa/recovery_codes/internal/flows.py
 ${PYSITELIB}/allauth/mfa/recovery_codes/internal/flows.pyc
 ${PYSITELIB}/allauth/mfa/recovery_codes/internal/flows.pyo
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/__init__.py
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/__init__.pyc
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/__init__.pyo
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_auth.py
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_auth.pyc
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_auth.pyo
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_views.py
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_views.pyc
-${PYSITELIB}/allauth/mfa/recovery_codes/tests/test_views.pyo
 ${PYSITELIB}/allauth/mfa/recovery_codes/urls.py
 ${PYSITELIB}/allauth/mfa/recovery_codes/urls.pyc
 ${PYSITELIB}/allauth/mfa/recovery_codes/urls.pyo
@@ -790,15 +673,6 @@ ${PYSITELIB}/allauth/mfa/totp/internal/a
 ${PYSITELIB}/allauth/mfa/totp/internal/flows.py
 ${PYSITELIB}/allauth/mfa/totp/internal/flows.pyc
 ${PYSITELIB}/allauth/mfa/totp/internal/flows.pyo
-${PYSITELIB}/allauth/mfa/totp/tests/__init__.py
-${PYSITELIB}/allauth/mfa/totp/tests/__init__.pyc
-${PYSITELIB}/allauth/mfa/totp/tests/__init__.pyo
-${PYSITELIB}/allauth/mfa/totp/tests/test_unit.py
-${PYSITELIB}/allauth/mfa/totp/tests/test_unit.pyc
-${PYSITELIB}/allauth/mfa/totp/tests/test_unit.pyo
-${PYSITELIB}/allauth/mfa/totp/tests/test_views.py
-${PYSITELIB}/allauth/mfa/totp/tests/test_views.pyc
-${PYSITELIB}/allauth/mfa/totp/tests/test_views.pyo
 ${PYSITELIB}/allauth/mfa/totp/urls.py
 ${PYSITELIB}/allauth/mfa/totp/urls.pyc
 ${PYSITELIB}/allauth/mfa/totp/urls.pyo
@@ -829,12 +703,6 @@ ${PYSITELIB}/allauth/mfa/webauthn/intern
 ${PYSITELIB}/allauth/mfa/webauthn/stages.py
 ${PYSITELIB}/allauth/mfa/webauthn/stages.pyc
 ${PYSITELIB}/allauth/mfa/webauthn/stages.pyo
-${PYSITELIB}/allauth/mfa/webauthn/tests/__init__.py
-${PYSITELIB}/allauth/mfa/webauthn/tests/__init__.pyc
-${PYSITELIB}/allauth/mfa/webauthn/tests/__init__.pyo
-${PYSITELIB}/allauth/mfa/webauthn/tests/test_views.py
-${PYSITELIB}/allauth/mfa/webauthn/tests/test_views.pyc
-${PYSITELIB}/allauth/mfa/webauthn/tests/test_views.pyo
 ${PYSITELIB}/allauth/mfa/webauthn/urls.py
 ${PYSITELIB}/allauth/mfa/webauthn/urls.pyc
 ${PYSITELIB}/allauth/mfa/webauthn/urls.pyo
@@ -865,9 +733,6 @@ ${PYSITELIB}/allauth/socialaccount/apps.
 ${PYSITELIB}/allauth/socialaccount/checks.py
 ${PYSITELIB}/allauth/socialaccount/checks.pyc
 ${PYSITELIB}/allauth/socialaccount/checks.pyo
-${PYSITELIB}/allauth/socialaccount/conftest.py
-${PYSITELIB}/allauth/socialaccount/conftest.pyc
-${PYSITELIB}/allauth/socialaccount/conftest.pyo
 ${PYSITELIB}/allauth/socialaccount/forms.py
 ${PYSITELIB}/allauth/socialaccount/forms.pyc
 ${PYSITELIB}/allauth/socialaccount/forms.pyo
@@ -898,15 +763,6 @@ ${PYSITELIB}/allauth/socialaccount/inter
 ${PYSITELIB}/allauth/socialaccount/internal/statekit.py
 ${PYSITELIB}/allauth/socialaccount/internal/statekit.pyc
 ${PYSITELIB}/allauth/socialaccount/internal/statekit.pyo
-${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.py
-${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/internal/tests/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_jwtkit.py
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_jwtkit.pyc
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_jwtkit.pyo
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.py
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.pyc
-${PYSITELIB}/allauth/socialaccount/internal/tests/test_statekit.pyo
 ${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.py
 ${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.pyc
 ${PYSITELIB}/allauth/socialaccount/migrations/0001_initial.pyo
@@ -940,9 +796,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/agave/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/agave/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/agave/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/agave/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/agave/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/agave/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/agave/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/agave/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/agave/urls.pyo
@@ -955,9 +808,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/amazon/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/amazon/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/amazon/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/amazon/urls.pyo
@@ -970,9 +820,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/amazon_cognito/urls.pyo
@@ -988,9 +835,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/angellist/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/angellist/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/angellist/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/angellist/urls.pyo
@@ -1009,9 +853,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/apple/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/apple/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/apple/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/apple/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/apple/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/apple/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/apple/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/apple/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/apple/urls.pyo
@@ -1027,9 +868,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/asana/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/asana/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/asana/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/asana/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/asana/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/asana/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/asana/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/asana/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/asana/urls.pyo
@@ -1042,9 +880,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/atlassian/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/atlassian/urls.pyo
@@ -1057,9 +892,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/auth0/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/auth0/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/auth0/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/auth0/urls.pyo
@@ -1072,9 +904,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/authentiq/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/authentiq/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/authentiq/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/authentiq/urls.pyo
@@ -1087,9 +916,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/baidu/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/baidu/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/baidu/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/baidu/urls.pyo
@@ -1117,9 +943,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/basecamp/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/basecamp/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/basecamp/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/basecamp/urls.pyo
@@ -1135,9 +958,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/battlenet/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/battlenet/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/battlenet/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/battlenet/urls.pyo
@@ -1153,9 +973,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/bitbucket_oauth2/urls.pyo
@@ -1168,9 +985,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/bitly/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/bitly/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/bitly/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/bitly/urls.pyo
@@ -1183,9 +997,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/box/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/box/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/box/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/box/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/box/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/box/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/box/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/box/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/box/urls.pyo
@@ -1198,9 +1009,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/cilogon/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/cilogon/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/cilogon/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/cilogon/urls.pyo
@@ -1213,9 +1021,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/clever/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/clever/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/clever/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/clever/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/clever/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/clever/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/clever/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/clever/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/clever/urls.pyo
@@ -1228,9 +1033,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/coinbase/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/coinbase/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/coinbase/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/coinbase/urls.pyo
@@ -1246,9 +1048,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/dataporten/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/dataporten/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dataporten/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dataporten/urls.pyo
@@ -1264,9 +1063,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/daum/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/daum/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/daum/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/daum/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/daum/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/daum/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/daum/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/daum/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/daum/urls.pyo
@@ -1279,9 +1075,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/digitalocean/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/digitalocean/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/digitalocean/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/digitalocean/urls.pyo
@@ -1297,9 +1090,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/dingtalk/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/dingtalk/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dingtalk/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dingtalk/urls.pyo
@@ -1312,9 +1102,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/discord/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/discord/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/discord/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/discord/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/discord/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/discord/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/discord/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/discord/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/discord/urls.pyo
@@ -1327,9 +1114,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/disqus/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/disqus/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/disqus/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/disqus/urls.pyo
@@ -1342,9 +1126,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/douban/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/douban/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/douban/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/douban/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/douban/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/douban/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/douban/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/douban/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/douban/urls.pyo
@@ -1357,9 +1138,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/doximity/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/doximity/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/doximity/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/doximity/urls.pyo
@@ -1372,9 +1150,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/draugiem/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/draugiem/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/draugiem/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/draugiem/urls.pyo
@@ -1387,9 +1162,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/drip/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/drip/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/drip/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/drip/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/drip/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/drip/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/drip/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/drip/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/drip/urls.pyo
@@ -1402,9 +1174,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/dropbox/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/dropbox/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dropbox/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dropbox/urls.pyo
@@ -1421,9 +1190,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/provider.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/templates/dummy/authenticate_form.html
-${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dummy/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dummy/urls.pyo
@@ -1439,9 +1205,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/dwolla/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/dwolla/urls.pyo
@@ -1454,9 +1217,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/edmodo/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/edmodo/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/edmodo/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/edmodo/urls.pyo
@@ -1469,9 +1229,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/edx/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/edx/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/edx/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/edx/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/edx/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/edx/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/edx/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/edx/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/edx/urls.pyo
@@ -1484,9 +1241,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/eventbrite/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/eventbrite/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/eventbrite/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/eventbrite/urls.pyo
@@ -1499,9 +1253,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/eveonline/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/eveonline/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/eveonline/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/eveonline/urls.pyo
@@ -1514,9 +1265,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/evernote/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/evernote/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/evernote/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/evernote/urls.pyo
@@ -1529,9 +1277,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/exist/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/exist/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/exist/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/exist/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/exist/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/exist/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/exist/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/exist/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/exist/urls.pyo
@@ -1559,9 +1304,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/provider.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/static/facebook/js/fbconnect.js
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/templates/facebook/fbconnect.html
-${PYSITELIB}/allauth/socialaccount/providers/facebook/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/facebook/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/facebook/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/facebook/urls.pyo
@@ -1574,9 +1316,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/feedly/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/feedly/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/feedly/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/feedly/urls.pyo
@@ -1592,9 +1331,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/feishu/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/feishu/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/feishu/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/feishu/urls.pyo
@@ -1607,9 +1343,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/figma/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/figma/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/figma/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/figma/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/figma/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/figma/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/figma/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/figma/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/figma/urls.pyo
@@ -1625,9 +1358,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/fivehundredpx/urls.pyo
@@ -1640,9 +1370,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/flickr/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/flickr/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/flickr/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/flickr/urls.pyo
@@ -1655,9 +1382,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/foursquare/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/foursquare/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/foursquare/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/foursquare/urls.pyo
@@ -1670,9 +1394,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/frontier/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/frontier/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/frontier/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/frontier/urls.pyo
@@ -1691,9 +1412,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/fxa/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/fxa/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/fxa/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/fxa/urls.pyo
@@ -1706,9 +1424,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/gitea/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/gitea/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/gitea/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gitea/urls.pyo
@@ -1721,9 +1436,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/github/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/github/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/github/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/github/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/github/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/github/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/github/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/github/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/github/urls.pyo
@@ -1736,9 +1448,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/gitlab/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/gitlab/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/gitlab/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gitlab/urls.pyo
@@ -1751,9 +1460,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/globus/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/globus/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/globus/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/globus/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/globus/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/globus/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/globus/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/globus/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/globus/urls.pyo
@@ -1766,9 +1472,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/google/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/google/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/google/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/google/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/google/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/google/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/google/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/google/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/google/urls.pyo
@@ -1781,9 +1484,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/gumroad/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/gumroad/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/gumroad/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/gumroad/urls.pyo
@@ -1796,9 +1496,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/hubic/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/hubic/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/hubic/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/hubic/urls.pyo
@@ -1811,9 +1508,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/hubspot/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/hubspot/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/hubspot/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/hubspot/urls.pyo
@@ -1826,9 +1520,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/instagram/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/instagram/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/instagram/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/instagram/urls.pyo
@@ -1841,9 +1532,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/jupyterhub/urls.pyo
@@ -1859,9 +1547,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/kakao/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/kakao/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/kakao/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/kakao/urls.pyo
@@ -1874,9 +1559,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/lemonldap/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/lemonldap/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/lemonldap/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lemonldap/urls.pyo
@@ -1889,9 +1571,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/lichess/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/lichess/urls.pyo
@@ -1907,9 +1586,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/line/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/line/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/line/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/line/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/line/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/line/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/line/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/line/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/line/urls.pyo
@@ -1922,9 +1598,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/linkedin_oauth2/urls.pyo
@@ -1937,9 +1610,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/mailchimp/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/mailchimp/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/mailchimp/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailchimp/urls.pyo
@@ -1952,9 +1622,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/mailcow/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/mailcow/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/mailcow/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailcow/urls.pyo
@@ -1967,9 +1634,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/mailru/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/mailru/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/mailru/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mailru/urls.pyo
@@ -1982,9 +1646,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/mediawiki/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/mediawiki/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/mediawiki/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/mediawiki/urls.pyo
@@ -2000,9 +1661,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/meetup/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/meetup/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/meetup/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/meetup/urls.pyo
@@ -2015,9 +1673,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/microsoft/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/microsoft/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/microsoft/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/microsoft/urls.pyo
@@ -2030,9 +1685,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/miro/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/miro/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/miro/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/miro/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/miro/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/miro/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/miro/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/miro/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/miro/urls.pyo
@@ -2048,9 +1700,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/naver/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/naver/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/naver/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/naver/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/naver/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/naver/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/naver/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/naver/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/naver/urls.pyo
@@ -2063,9 +1712,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/netiq/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/netiq/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/netiq/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/netiq/urls.pyo
@@ -2078,9 +1724,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/nextcloud/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/nextcloud/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/nextcloud/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/nextcloud/urls.pyo
@@ -2096,9 +1739,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/notion/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/notion/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/notion/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/notion/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/notion/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/notion/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/notion/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/notion/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/notion/urls.pyo
@@ -2111,6 +1751,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/client.py
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/client.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/client.pyo
+${PYSITELIB}/allauth/socialaccount/providers/oauth/oauth1_auth.py
+${PYSITELIB}/allauth/socialaccount/providers/oauth/oauth1_auth.pyc
+${PYSITELIB}/allauth/socialaccount/providers/oauth/oauth1_auth.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/oauth/provider.pyo
@@ -2129,12 +1772,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.py
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.py
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.pyc
-${PYSITELIB}/allauth/socialaccount/providers/oauth2/tests/test_views.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/oauth2/urls.pyo
@@ -2150,9 +1787,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/odnoklassniki/urls.pyo
@@ -2165,9 +1799,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/okta/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/okta/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/okta/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/okta/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/okta/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/okta/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/okta/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/okta/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/okta/urls.pyo
@@ -2195,9 +1826,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/openid/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/openid/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openid/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/openid/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/openid/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/openid/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/openid/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/openid/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openid/urls.pyo
@@ -2213,9 +1841,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/openid_connect/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/openid_connect/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/openid_connect/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openid_connect/urls.pyo
@@ -2228,9 +1853,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/openstreetmap/urls.pyo
@@ -2243,9 +1865,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/orcid/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/orcid/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/orcid/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/orcid/urls.pyo
@@ -2264,9 +1883,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/patreon/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/patreon/urls.pyo
@@ -2279,9 +1895,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/paypal/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/paypal/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/paypal/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/paypal/urls.pyo
@@ -2294,9 +1907,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/pinterest/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/pinterest/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/pinterest/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pinterest/urls.pyo
@@ -2315,9 +1925,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/pocket/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/pocket/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/pocket/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/pocket/urls.pyo
@@ -2330,9 +1937,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/questrade/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/questrade/urls.pyo
@@ -2348,9 +1952,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/quickbooks/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/quickbooks/urls.pyo
@@ -2363,9 +1964,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/reddit/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/reddit/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/reddit/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/reddit/urls.pyo
@@ -2378,9 +1976,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/robinhood/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/robinhood/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/robinhood/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/robinhood/urls.pyo
@@ -2393,9 +1988,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/salesforce/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/salesforce/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/salesforce/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/salesforce/urls.pyo
@@ -2405,15 +1997,9 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.py
 ${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/saml/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.py
-${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.pyc
-${PYSITELIB}/allauth/socialaccount/providers/saml/conftest.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/saml/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/saml/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/saml/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/saml/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/saml/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/saml/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/saml/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/saml/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/saml/urls.pyo
@@ -2429,9 +2015,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/sharefile/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/sharefile/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/sharefile/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/sharefile/urls.pyo
@@ -2444,9 +2027,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/shopify/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/shopify/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/shopify/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/shopify/urls.pyo
@@ -2462,9 +2042,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/slack/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/slack/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/slack/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/slack/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/slack/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/slack/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/slack/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/slack/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/slack/urls.pyo
@@ -2483,9 +2060,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/snapchat/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/snapchat/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/snapchat/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/snapchat/urls.pyo
@@ -2498,9 +2072,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/soundcloud/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/soundcloud/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/soundcloud/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/soundcloud/urls.pyo
@@ -2513,9 +2084,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/spotify/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/spotify/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/spotify/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/spotify/urls.pyo
@@ -2528,9 +2096,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/stackexchange/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/stackexchange/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/stackexchange/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stackexchange/urls.pyo
@@ -2558,9 +2123,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/stocktwits/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/stocktwits/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/stocktwits/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stocktwits/urls.pyo
@@ -2573,9 +2135,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/strava/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/strava/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/strava/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/strava/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/strava/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/strava/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/strava/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/strava/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/strava/urls.pyo
@@ -2588,9 +2147,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/stripe/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/stripe/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/stripe/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/stripe/urls.pyo
@@ -2605,9 +2161,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/provider.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/static/telegram/js/telegram.js
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/templates/telegram/callback.html
-${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/telegram/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/telegram/urls.pyo
@@ -2626,9 +2179,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.py
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/scope.pyo
-${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/tiktok/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tiktok/urls.pyo
@@ -2641,9 +2191,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/trainingpeaks/urls.pyo
@@ -2656,9 +2203,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/trello/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/trello/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/trello/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/trello/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/trello/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/trello/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/trello/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/trello/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/trello/urls.pyo
@@ -2671,9 +2215,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/tumblr/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/tumblr/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/tumblr/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr/urls.pyo
@@ -2686,9 +2227,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/tumblr_oauth2/urls.pyo
@@ -2701,9 +2239,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twentythreeandme/urls.pyo
@@ -2716,9 +2251,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/twitch/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/twitch/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/twitch/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitch/urls.pyo
@@ -2731,9 +2263,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/twitter/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/twitter/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/twitter/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitter/urls.pyo
@@ -2746,9 +2275,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/twitter_oauth2/urls.pyo
@@ -2764,9 +2290,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/untappd/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/untappd/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/untappd/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/untappd/urls.pyo
@@ -2779,9 +2302,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/vimeo/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/vimeo/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/vimeo/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo/urls.pyo
@@ -2797,9 +2317,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vimeo_oauth2/urls.pyo
@@ -2812,9 +2329,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/vk/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/vk/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vk/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/vk/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/vk/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/vk/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/vk/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/vk/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/vk/urls.pyo
@@ -2827,9 +2341,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/wahoo/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/wahoo/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/wahoo/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/wahoo/urls.pyo
@@ -2842,9 +2353,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/weibo/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/weibo/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/weibo/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/weibo/urls.pyo
@@ -2860,9 +2368,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/weixin/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/weixin/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/weixin/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/weixin/urls.pyo
@@ -2875,9 +2380,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/windowslive/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/windowslive/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/windowslive/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/windowslive/urls.pyo
@@ -2890,9 +2392,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/xing/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/xing/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/xing/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/xing/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/xing/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/xing/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/xing/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/xing/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/xing/urls.pyo
@@ -2908,9 +2407,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/yahoo/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/yahoo/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/yahoo/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/yahoo/urls.pyo
@@ -2923,9 +2419,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/yandex/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/yandex/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/yandex/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/yandex/urls.pyo
@@ -2938,9 +2431,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/ynab/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/ynab/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/ynab/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/ynab/urls.pyo
@@ -2953,9 +2443,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/zoho/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/zoho/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/zoho/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/zoho/urls.pyo
@@ -2968,9 +2455,6 @@ ${PYSITELIB}/allauth/socialaccount/provi
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/provider.py
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/provider.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/provider.pyo
-${PYSITELIB}/allauth/socialaccount/providers/zoom/tests.py
-${PYSITELIB}/allauth/socialaccount/providers/zoom/tests.pyc
-${PYSITELIB}/allauth/socialaccount/providers/zoom/tests.pyo
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/urls.py
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/providers/zoom/urls.pyo
@@ -2989,30 +2473,6 @@ ${PYSITELIB}/allauth/socialaccount/templ
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.py
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.pyc
 ${PYSITELIB}/allauth/socialaccount/templatetags/socialaccount.pyo
-${PYSITELIB}/allauth/socialaccount/tests/__init__.py
-${PYSITELIB}/allauth/socialaccount/tests/__init__.pyc
-${PYSITELIB}/allauth/socialaccount/tests/__init__.pyo
-${PYSITELIB}/allauth/socialaccount/tests/conftest.py
-${PYSITELIB}/allauth/socialaccount/tests/conftest.pyc
-${PYSITELIB}/allauth/socialaccount/tests/conftest.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_adapter.py
-${PYSITELIB}/allauth/socialaccount/tests/test_adapter.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_adapter.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_connect.py
-${PYSITELIB}/allauth/socialaccount/tests/test_connect.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_connect.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_login.py
-${PYSITELIB}/allauth/socialaccount/tests/test_login.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_login.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_registry.py
-${PYSITELIB}/allauth/socialaccount/tests/test_registry.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_registry.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_signup.py
-${PYSITELIB}/allauth/socialaccount/tests/test_signup.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_signup.pyo
-${PYSITELIB}/allauth/socialaccount/tests/test_utils.py
-${PYSITELIB}/allauth/socialaccount/tests/test_utils.pyc
-${PYSITELIB}/allauth/socialaccount/tests/test_utils.pyo
 ${PYSITELIB}/allauth/socialaccount/urls.py
 ${PYSITELIB}/allauth/socialaccount/urls.pyc
 ${PYSITELIB}/allauth/socialaccount/urls.pyo
@@ -3119,6 +2579,12 @@ ${PYSITELIB}/allauth/templates/allauth/e
 ${PYSITELIB}/allauth/templates/allauth/layouts/base.html
 ${PYSITELIB}/allauth/templates/allauth/layouts/entrance.html
 ${PYSITELIB}/allauth/templates/allauth/layouts/manage.html
+${PYSITELIB}/allauth/templates/idp/oidc/authorization_form.html
+${PYSITELIB}/allauth/templates/idp/oidc/device_authorization_code_form.html
+${PYSITELIB}/allauth/templates/idp/oidc/device_authorization_confirm_form.html
+${PYSITELIB}/allauth/templates/idp/oidc/device_authorization_confirmed.html
+${PYSITELIB}/allauth/templates/idp/oidc/device_authorization_denied.html
+${PYSITELIB}/allauth/templates/idp/oidc/error.html
 ${PYSITELIB}/allauth/templates/mfa/authenticate.html
 ${PYSITELIB}/allauth/templates/mfa/base_entrance.html
 ${PYSITELIB}/allauth/templates/mfa/base_manage.html
@@ -3177,7 +2643,6 @@ ${PYSITELIB}/allauth/templates/socialacc
 ${PYSITELIB}/allauth/templates/socialaccount/snippets/login.html
 ${PYSITELIB}/allauth/templates/socialaccount/snippets/login_extra.html
 ${PYSITELIB}/allauth/templates/socialaccount/snippets/provider_list.html
-${PYSITELIB}/allauth/templates/tests/test_403_csrf.html
 ${PYSITELIB}/allauth/templates/usersessions/base_manage.html
 ${PYSITELIB}/allauth/templates/usersessions/messages/sessions_logged_out.txt
 ${PYSITELIB}/allauth/templates/usersessions/usersession_list.html
@@ -3187,12 +2652,6 @@ ${PYSITELIB}/allauth/templatetags/__init
 ${PYSITELIB}/allauth/templatetags/allauth.py
 ${PYSITELIB}/allauth/templatetags/allauth.pyc
 ${PYSITELIB}/allauth/templatetags/allauth.pyo
-${PYSITELIB}/allauth/tests/__init__.py
-${PYSITELIB}/allauth/tests/__init__.pyc
-${PYSITELIB}/allauth/tests/__init__.pyo
-${PYSITELIB}/allauth/tests/test_utils.py
-${PYSITELIB}/allauth/tests/test_utils.pyc
-${PYSITELIB}/allauth/tests/test_utils.pyo
 ${PYSITELIB}/allauth/urls.py
 ${PYSITELIB}/allauth/urls.pyc
 ${PYSITELIB}/allauth/urls.pyo
@@ -3238,15 +2697,6 @@ ${PYSITELIB}/allauth/usersessions/models
 ${PYSITELIB}/allauth/usersessions/signals.py
 ${PYSITELIB}/allauth/usersessions/signals.pyc
 ${PYSITELIB}/allauth/usersessions/signals.pyo
-${PYSITELIB}/allauth/usersessions/tests/__init__.py
-${PYSITELIB}/allauth/usersessions/tests/__init__.pyc
-${PYSITELIB}/allauth/usersessions/tests/__init__.pyo
-${PYSITELIB}/allauth/usersessions/tests/test_middleware.py
-${PYSITELIB}/allauth/usersessions/tests/test_middleware.pyc
-${PYSITELIB}/allauth/usersessions/tests/test_middleware.pyo
-${PYSITELIB}/allauth/usersessions/tests/test_views.py
-${PYSITELIB}/allauth/usersessions/tests/test_views.pyc
-${PYSITELIB}/allauth/usersessions/tests/test_views.pyo
 ${PYSITELIB}/allauth/usersessions/urls.py
 ${PYSITELIB}/allauth/usersessions/urls.pyc
 ${PYSITELIB}/allauth/usersessions/urls.pyo

Index: pkgsrc/www/py-django-allauth/distinfo
diff -u pkgsrc/www/py-django-allauth/distinfo:1.18 pkgsrc/www/py-django-allauth/distinfo:1.19
--- pkgsrc/www/py-django-allauth/distinfo:1.18  Thu May 22 05:37:49 2025
+++ pkgsrc/www/py-django-allauth/distinfo       Thu Jul 10 15:53:45 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.18 2025/05/22 05:37:49 adam Exp $
+$NetBSD: distinfo,v 1.19 2025/07/10 15:53:45 adam Exp $
 
-BLAKE2s (django_allauth-65.8.1.tar.gz) = 97ff6942580f05eae1d386bfab8d3565584c48bab1827b4b1ecf5f4ab824c135
-SHA512 (django_allauth-65.8.1.tar.gz) = cd1ed7433586ce4df665301c6d5d893601f2e0435bcc89501f89e08047ce915cb1dc5740c51fa12ee77f08325e2e7e6f96f085c1ec556c916ca69137e021e704
-Size (django_allauth-65.8.1.tar.gz) = 1681310 bytes
+BLAKE2s (django_allauth-65.10.0.tar.gz) = 0453bbe24c491d4554d00ab32926bb5e2730d1e32195620b599d81cd0d717038
+SHA512 (django_allauth-65.10.0.tar.gz) = c282aae8032e41d20f52b1cf1c36c799ba5e3d3198374d5c31ccae96d06e179fa21b69b8ad6432b1c146cb06245a448576b62c93657b8df7ca7720622ff01d13
+Size (django_allauth-65.10.0.tar.gz) = 1897777 bytes



Home | Main Index | Thread Index | Old Index