From 1182ae6c5486d356111c44306129ca713f6e2df2 Mon Sep 17 00:00:00 2001 From: Brian Beggs Date: Tue, 2 Aug 2016 18:06:22 -0400 Subject: [PATCH] Adding edx-django-release-util to LMS and CMS --- cms/envs/common.py | 3 +++ lms/envs/common.py | 3 +++ requirements/edx/base.txt | 3 +++ 3 files changed, 9 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index 09b8f2648b..bc648be115 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -933,6 +933,9 @@ INSTALLED_APPS = ( # Enables default site and redirects 'django_sites_extensions', + + # additional release utilities to ease automation + 'release_util' ) diff --git a/lms/envs/common.py b/lms/envs/common.py index 6ad6d8934a..4f971bece1 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -2078,6 +2078,9 @@ INSTALLED_APPS = ( # Email marketing integration 'email_marketing', + + # additional release utilities to ease automation + 'release_util', ) # Migrations which are not in the standard module "migrations" diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt index cb79d955e5..a21cf677f8 100644 --- a/requirements/edx/base.txt +++ b/requirements/edx/base.txt @@ -183,3 +183,6 @@ pynliner==0.5.2 # for sailthru integration sailthru-client==2.2.3 + +# Release utils for the edx release pipeline +edx-django-release-util==0.0.4 \ No newline at end of file