remove south

This commit is contained in:
Alberto Sanchez 2014-09-03 12:49:34 -04:30
parent 94bca534b0
commit eefdf06fb0
3 changed files with 3 additions and 10 deletions

View File

@ -13,7 +13,6 @@ django-crispy-forms==1.4.0
django-floppyforms==1.2.0
# Models
South==1.0
django-model-utils==2.2
# images

View File

@ -37,9 +37,11 @@ class Common(Configuration):
'django.contrib.admin',
)
THIRD_PARTY_APPS = (
'south', # Database migration helpers:
'crispy_forms', # Form layouts
'avatar', # for user avatars
'allauth', # registration
'allauth.account', # registration
'allauth.socialaccount', # registration
)
# Apps specific for this project go here.
@ -50,14 +52,6 @@ class Common(Configuration):
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
INSTALLED_APPS += (
# Needs to come last for now because of a weird edge case between
# South and allauth
'allauth', # registration
'allauth.account', # registration
'allauth.socialaccount', # registration
)
# END APP CONFIGURATION
# MIDDLEWARE CONFIGURATION

View File