Skip to content

Commit

Permalink
Updated to Django 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jun 6, 2018
1 parent ecb2a0e commit d107d78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/migrations/0001_squashed_0005_remove_version.py
Expand Up @@ -30,7 +30,7 @@ class Migration(migrations.Migration):
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('lang', models.CharField(choices=settings.LANGUAGES, default='en', max_length=2)),
('is_default', models.BooleanField(default=False)),
('release', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='releases.Release')),
('release', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='releases.Release', limit_choices_to={'status': 'f'})),
],
),
migrations.AlterUniqueTogether(
Expand Down
2 changes: 1 addition & 1 deletion requirements/common.txt
@@ -1,5 +1,5 @@
bleach==2.1.3
Django==1.11.12
Django==2.0.6
django-contact-form==1.5
django-hosts==3.0
django-markdownx==2.0.23
Expand Down

0 comments on commit d107d78

Please sign in to comment.