Skip to content

Commit

Permalink
Merge 318db3e into d0f4209
Browse files Browse the repository at this point in the history
  • Loading branch information
paulproteus committed Aug 5, 2014
2 parents d0f4209 + 318db3e commit ca12f2b
Show file tree
Hide file tree
Showing 65 changed files with 4,107 additions and 1,022 deletions.
7 changes: 5 additions & 2 deletions vendor/packages/south/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Metadata-Version: 1.1
Name: South
Version: 0.7.3
Version: 1.0
Summary: South: Migrations for Django
Home-page: http://south.aeracode.org/
Author: Andrew Godwin & Andy McCurdy
Expand All @@ -17,3 +17,6 @@ Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
10 changes: 3 additions & 7 deletions vendor/packages/south/README
@@ -1,10 +1,6 @@
This is South, a Django application to provide migrations in a sane way.

By sane, we mean that the status of every migration is tracked individually,
rather than just the number of the top migration reached; this means South
can detect when you have an unapplied migration that's sitting in the middle
of a whole load of applied ones, and will let you apply it straight off,
or let you roll back to it, and apply from there forward.
This is South, a Django application to provide schema and data migrations.

Documentation on South is currently available on our project site;
you can find it at http://south.aeracode.org/docs/

South is compatable with Django 1.2 and higher, and Python 2.6 and higher.
7 changes: 5 additions & 2 deletions vendor/packages/south/South.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Metadata-Version: 1.1
Name: South
Version: 0.7.3
Version: 1.0
Summary: South: Migrations for Django
Home-page: http://south.aeracode.org/
Author: Andrew Godwin & Andy McCurdy
Expand All @@ -17,3 +17,6 @@ Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
17 changes: 15 additions & 2 deletions vendor/packages/south/South.egg-info/SOURCES.txt
@@ -1,4 +1,5 @@
README
setup.cfg
setup.py
South.egg-info/PKG-INFO
South.egg-info/SOURCES.txt
Expand All @@ -11,13 +12,14 @@ south/models.py
south/modelsinspector.py
south/orm.py
south/signals.py
south/utils.py
south/test_shim.py
south/v2.py
south/creator/__init__.py
south/creator/actions.py
south/creator/changes.py
south/creator/freezer.py
south/db/__init__.py
south/db/firebird.py
south/db/generic.py
south/db/mysql.py
south/db/oracle.py
Expand All @@ -29,6 +31,7 @@ south/hacks/__init__.py
south/hacks/django_1_0.py
south/introspection_plugins/__init__.py
south/introspection_plugins/annoying_autoonetoone.py
south/introspection_plugins/django_audit_log.py
south/introspection_plugins/django_objectpermissions.py
south/introspection_plugins/django_tagging.py
south/introspection_plugins/django_taggit.py
Expand All @@ -40,6 +43,7 @@ south/management/commands/convert_to_south.py
south/management/commands/datamigration.py
south/management/commands/graphmigrations.py
south/management/commands/migrate.py
south/management/commands/migrationcheck.py
south/management/commands/schemamigration.py
south/management/commands/startmigration.py
south/management/commands/syncdb.py
Expand All @@ -52,6 +56,9 @@ south/migration/utils.py
south/tests/__init__.py
south/tests/autodetection.py
south/tests/db.py
south/tests/db_firebird.py
south/tests/db_mysql.py
south/tests/freezer.py
south/tests/inspector.py
south/tests/logger.py
south/tests/logic.py
Expand Down Expand Up @@ -103,9 +110,15 @@ south/tests/fakeapp/migrations/0001_spam.py
south/tests/fakeapp/migrations/0002_eggs.py
south/tests/fakeapp/migrations/0003_alter_spam.py
south/tests/fakeapp/migrations/__init__.py
south/tests/non_managed/__init__.py
south/tests/non_managed/models.py
south/tests/non_managed/migrations/__init__.py
south/tests/otherfakeapp/__init__.py
south/tests/otherfakeapp/models.py
south/tests/otherfakeapp/migrations/0001_first.py
south/tests/otherfakeapp/migrations/0002_second.py
south/tests/otherfakeapp/migrations/0003_third.py
south/tests/otherfakeapp/migrations/__init__.py
south/tests/otherfakeapp/migrations/__init__.py
south/utils/__init__.py
south/utils/datetime_utils.py
south/utils/py3.py
5 changes: 4 additions & 1 deletion vendor/packages/south/pip-egg-info/South.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: South
Version: 0.7.3
Version: 1.0
Summary: South: Migrations for Django
Home-page: http://south.aeracode.org/
Author: Andrew Godwin & Andy McCurdy
Expand All @@ -17,3 +17,6 @@ Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
16 changes: 14 additions & 2 deletions vendor/packages/south/pip-egg-info/South.egg-info/SOURCES.txt
Expand Up @@ -11,13 +11,14 @@ south/models.py
south/modelsinspector.py
south/orm.py
south/signals.py
south/utils.py
south/test_shim.py
south/v2.py
south/creator/__init__.py
south/creator/actions.py
south/creator/changes.py
south/creator/freezer.py
south/db/__init__.py
south/db/firebird.py
south/db/generic.py
south/db/mysql.py
south/db/oracle.py
Expand All @@ -29,6 +30,7 @@ south/hacks/__init__.py
south/hacks/django_1_0.py
south/introspection_plugins/__init__.py
south/introspection_plugins/annoying_autoonetoone.py
south/introspection_plugins/django_audit_log.py
south/introspection_plugins/django_objectpermissions.py
south/introspection_plugins/django_tagging.py
south/introspection_plugins/django_taggit.py
Expand All @@ -40,6 +42,7 @@ south/management/commands/convert_to_south.py
south/management/commands/datamigration.py
south/management/commands/graphmigrations.py
south/management/commands/migrate.py
south/management/commands/migrationcheck.py
south/management/commands/schemamigration.py
south/management/commands/startmigration.py
south/management/commands/syncdb.py
Expand All @@ -52,6 +55,9 @@ south/migration/utils.py
south/tests/__init__.py
south/tests/autodetection.py
south/tests/db.py
south/tests/db_firebird.py
south/tests/db_mysql.py
south/tests/freezer.py
south/tests/inspector.py
south/tests/logger.py
south/tests/logic.py
Expand Down Expand Up @@ -103,9 +109,15 @@ south/tests/fakeapp/migrations/0001_spam.py
south/tests/fakeapp/migrations/0002_eggs.py
south/tests/fakeapp/migrations/0003_alter_spam.py
south/tests/fakeapp/migrations/__init__.py
south/tests/non_managed/__init__.py
south/tests/non_managed/models.py
south/tests/non_managed/migrations/__init__.py
south/tests/otherfakeapp/__init__.py
south/tests/otherfakeapp/models.py
south/tests/otherfakeapp/migrations/0001_first.py
south/tests/otherfakeapp/migrations/0002_second.py
south/tests/otherfakeapp/migrations/0003_third.py
south/tests/otherfakeapp/migrations/__init__.py
south/tests/otherfakeapp/migrations/__init__.py
south/utils/__init__.py
south/utils/datetime_utils.py
south/utils/py3.py
3 changes: 3 additions & 0 deletions vendor/packages/south/setup.cfg
@@ -1,3 +1,6 @@
[wheel]
universal = 1

[egg_info]
tag_build =
tag_date = 0
Expand Down
12 changes: 9 additions & 3 deletions vendor/packages/south/setup.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

# Use setuptools if we can
try:
Expand All @@ -24,7 +24,10 @@
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development"
"Topic :: Software Development",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
packages=[
'south',
Expand All @@ -46,6 +49,7 @@
'south.tests.otherfakeapp',
'south.tests.deps_c',
'south.tests.deps_b',
'south.tests.non_managed',
'south.tests.circular_a.migrations',
'south.tests.emptyapp.migrations',
'south.tests.deps_a.migrations',
Expand All @@ -54,6 +58,8 @@
'south.tests.circular_b.migrations',
'south.tests.otherfakeapp.migrations',
'south.tests.deps_c.migrations',
'south.tests.deps_b.migrations'
'south.tests.deps_b.migrations',
'south.tests.non_managed.migrations',
'south.utils',
],
)
2 changes: 1 addition & 1 deletion vendor/packages/south/south/__init__.py
Expand Up @@ -2,7 +2,7 @@
South - Useable migrations for Django apps
"""

__version__ = "0.7.3"
__version__ = "1.0"
__authors__ = [
"Andrew Godwin <andrew@aeracode.org>",
"Andy McCurdy <andy@andymccurdy.com>"
Expand Down

0 comments on commit ca12f2b

Please sign in to comment.