Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
612d9629
Commit
612d9629
authored
Oct 11, 2017
by
Douglas Hall
Committed by
GitHub
Oct 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16196 from edx/douglashall/update_enterprise_0_51_2
Updating edx-enterprise to 0.51.3.
parents
69d52396
ca903278
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
5 deletions
+21
-5
common/djangoapps/util/tests/test_db.py
+1
-4
lms/djangoapps/course_goals/migrations/0002_auto_20171010_1129.py
+19
-0
requirements/edx/base.txt
+1
-1
No files found.
common/djangoapps/util/tests/test_db.py
View file @
612d9629
...
...
@@ -236,7 +236,4 @@ class MigrationTests(TestCase):
out
=
StringIO
()
call_command
(
'makemigrations'
,
dry_run
=
True
,
verbosity
=
3
,
stdout
=
out
)
output
=
out
.
getvalue
()
# Temporary for `edx-enterprise` version bumps with migrations.
# Please delete when `edx-enterprise==0.48.3`.
if
'Remove field'
not
in
output
and
'Delete model'
not
in
output
:
self
.
assertIn
(
'No changes detected'
,
output
)
self
.
assertIn
(
'No changes detected'
,
output
)
lms/djangoapps/course_goals/migrations/0002_auto_20171010_1129.py
0 → 100644
View file @
612d9629
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'course_goals'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'coursegoal'
,
name
=
'goal_key'
,
field
=
models
.
CharField
(
default
=
b
'unsure'
,
max_length
=
100
,
choices
=
[(
b
'certify'
,
'Earn a certificate'
),
(
b
'complete'
,
'Complete the course'
),
(
b
'explore'
,
'Explore the course'
),
(
b
'unsure'
,
'Not sure yet'
)]),
),
]
requirements/edx/base.txt
View file @
612d9629
...
...
@@ -47,7 +47,7 @@ edx-lint==0.4.3
astroid==1.3.8
edx-django-oauth2-provider==1.2.5
edx-django-sites-extensions==2.3.0
edx-enterprise==0.51.
1
edx-enterprise==0.51.
3
edx-oauth2-provider==1.2.2
edx-opaque-keys==0.4.0
edx-organizations==0.4.6
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment