aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2014-09-04 17:15:24 -0500
committerAndy Doan <andy.doan@linaro.org>2014-09-04 17:15:24 -0500
commitc096b6d32dffff478050ad7f95d7f4348d4b7947 (patch)
treeb446697909f6cd47f830297b3fad2d807047b1fb
parentfe4d8d49d8abe690696aa25bf50e7a0bbd6553d1 (diff)
django-south: fix import / version issue2014.08
I found a bug in our migration files. The venv I was using had South==1.0 installed. Our production systems have 0.7.3 installed. This moves us to the proper version of south for venv's and removes the import since it was unused. Change-Id: I53eb6d06de54b1251e0e61a4590aba5ddde70982
-rw-r--r--license_protected_downloads/migrations/0001_initial.py1
-rw-r--r--license_protected_downloads/migrations/0002_auto__add_apilog.py1
-rw-r--r--license_protected_downloads/migrations/0003_auto__add_field_apikeystore_description__add_field_apikeystore_last_us.py1
-rw-r--r--requirements.txt1
4 files changed, 1 insertions, 3 deletions
diff --git a/license_protected_downloads/migrations/0001_initial.py b/license_protected_downloads/migrations/0001_initial.py
index c1f87d9..aa33e04 100644
--- a/license_protected_downloads/migrations/0001_initial.py
+++ b/license_protected_downloads/migrations/0001_initial.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
diff --git a/license_protected_downloads/migrations/0002_auto__add_apilog.py b/license_protected_downloads/migrations/0002_auto__add_apilog.py
index b471957..932ce71 100644
--- a/license_protected_downloads/migrations/0002_auto__add_apilog.py
+++ b/license_protected_downloads/migrations/0002_auto__add_apilog.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
diff --git a/license_protected_downloads/migrations/0003_auto__add_field_apikeystore_description__add_field_apikeystore_last_us.py b/license_protected_downloads/migrations/0003_auto__add_field_apikeystore_description__add_field_apikeystore_last_us.py
index 024e8ee..1b4fbf3 100644
--- a/license_protected_downloads/migrations/0003_auto__add_field_apikeystore_description__add_field_apikeystore_last_us.py
+++ b/license_protected_downloads/migrations/0003_auto__add_field_apikeystore_description__add_field_apikeystore_last_us.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
diff --git a/requirements.txt b/requirements.txt
index 46f88cd..33640c5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,6 +6,7 @@ pep8
pyflakes
python-openid
requests
+South==0.7.3
textile
mock