Commit 9de5cbea by Matt Tuchfarber

Bump enterprise to 0.48.2

parent 72c5d952
...@@ -236,4 +236,7 @@ class MigrationTests(TestCase): ...@@ -236,4 +236,7 @@ class MigrationTests(TestCase):
out = StringIO() out = StringIO()
call_command('makemigrations', dry_run=True, verbosity=3, stdout=out) call_command('makemigrations', dry_run=True, verbosity=3, stdout=out)
output = out.getvalue() output = out.getvalue()
self.assertIn('No changes detected', output) # 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)
...@@ -48,7 +48,7 @@ edx-lint==0.4.3 ...@@ -48,7 +48,7 @@ edx-lint==0.4.3
astroid==1.3.8 astroid==1.3.8
edx-django-oauth2-provider==1.2.5 edx-django-oauth2-provider==1.2.5
edx-django-sites-extensions==2.3.0 edx-django-sites-extensions==2.3.0
edx-enterprise==0.48.1 edx-enterprise==0.48.2
edx-oauth2-provider==1.2.2 edx-oauth2-provider==1.2.2
edx-opaque-keys==0.4.0 edx-opaque-keys==0.4.0
edx-organizations==0.4.6 edx-organizations==0.4.6
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment