Change conditional import from allauth.socialaccount

This commit is contained in:
Maxim Kukhtenkov 2018-01-20 20:01:42 -05:00
parent bcd6ab4401
commit c009bb9975
2 changed files with 4 additions and 8 deletions

View File

@ -9,19 +9,15 @@ try:
get_username_max_length)
from allauth.account.adapter import get_adapter
from allauth.account.utils import setup_user_email
from allauth.socialaccount.helpers import complete_social_login
from allauth.socialaccount.models import SocialAccount
from allauth.socialaccount.providers.base import AuthProcess
except ImportError:
raise ImportError("allauth needs to be added to INSTALLED_APPS.")
from rest_framework import serializers
from requests.exceptions import HTTPError
# Import is needed only if we are using social login, in which
# case the allauth.socialaccount will be declared
if 'allauth.socialaccount' in settings.INSTALLED_APPS:
from allauth.socialaccount.helpers import complete_social_login
from allauth.socialaccount.models import SocialAccount
from allauth.socialaccount.providers.base import AuthProcess
class SocialAccountSerializer(serializers.ModelSerializer):
"""

View File

@ -18,7 +18,7 @@ f.close()
setup(
name='django-rest-auth',
version='0.9.2',
version='0.9.3',
author='Sumit Chachra',
author_email='chachra@tivix.com',
url='http://github.com/Tivix/django-rest-auth',