Django 3.2.2 produces deprecation warning on launch
"RemovedInDjango41Warning: 'django_celery_beat' defines default_app_config = 'django_celery_beat.apps.BeatConfig'. Django now detects this configuration automatically. You can remove default_app_config.
app_config = AppConfig.create(entry)"
will remove when we drop Django 2.2 https://github.com/celery/django-celery-beat/blob/master/django_celery_beat/__init__.py
Would it make sense to conditionally define default_app_config depending on Django's version ?
yes
fixed
Most helpful comment
yes