From ce3a2b2bd16526ae0c9a3a297fc221f79a17ca1b Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 11 Jan 2016 00:13:10 -0600 Subject: [PATCH] Fix dependency info of custom user model migration --- accounts/migrations/0003_user_schema_migration.py | 2 +- requirements.txt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/accounts/migrations/0003_user_schema_migration.py b/accounts/migrations/0003_user_schema_migration.py index c52e7521..40688b94 100644 --- a/accounts/migrations/0003_user_schema_migration.py +++ b/accounts/migrations/0003_user_schema_migration.py @@ -95,7 +95,7 @@ class Migration(migrations.Migration): ('accounts', '0002_user_populate_migration'), ('admin', '0001_initial'), ('auth', '0006_require_contenttypes_0002'), - ('course', '0064_link_to_keygen_tool'), + ('course', '0075_course_metadata'), ] operations = [ diff --git a/requirements.txt b/requirements.txt index 6a312cf0..cd4d9a5b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -71,3 +71,7 @@ django-celery # For searchable select forms django_select2==5.0.3 + +# Custom user migration created using +# https://bitbucket.org/spookylukey/django_custom_user_migration +# (but this package no longer needs to be installed) -- GitLab