-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix django 4.0 deperecation warnings (#4091)
- Loading branch information
1 parent
00b8622
commit 1436d08
Showing
13 changed files
with
77 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
default_app_config = 'course_discovery.apps.course_metadata.apps.CourseMetadataConfig' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
course_discovery/apps/course_metadata/migrations/0333_auto_20230918_0748.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Generated by Django 3.2.20 on 2023-09-18 07:48 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('course_metadata', '0332_alter_migratecourseslugconfiguration_course_type'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='additionalmetadata', | ||
options={}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='productmeta', | ||
options={}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='productvalue', | ||
options={}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='taxiform', | ||
options={}, | ||
), | ||
migrations.AlterField( | ||
model_name='courserun', | ||
name='has_ofac_restrictions', | ||
field=models.BooleanField(blank=True, choices=[('', '--'), (True, 'Blocked'), (False, 'Unrestricted')], default=None, null=True, verbose_name='Add OFAC restriction text to the FAQ section of the Marketing site'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalcourserun', | ||
name='has_ofac_restrictions', | ||
field=models.BooleanField(blank=True, choices=[('', '--'), (True, 'Blocked'), (False, 'Unrestricted')], default=None, null=True, verbose_name='Add OFAC restriction text to the FAQ section of the Marketing site'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalprogram', | ||
name='has_ofac_restrictions', | ||
field=models.BooleanField(blank=True, choices=[('', '--'), (True, 'Blocked'), (False, 'Unrestricted')], default=None, null=True, verbose_name='Add OFAC restriction text to the FAQ section of the Marketing site'), | ||
), | ||
migrations.AlterField( | ||
model_name='program', | ||
name='has_ofac_restrictions', | ||
field=models.BooleanField(blank=True, choices=[('', '--'), (True, 'Blocked'), (False, 'Unrestricted')], default=None, null=True, verbose_name='Add OFAC restriction text to the FAQ section of the Marketing site'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
default_app_config = 'course_discovery.apps.ietf_language_tags.apps.IETFLanguageTagsConfig' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
default_app_config = 'course_discovery.apps.publisher.apps.PublisherAppConfig' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters