Overview

Django Celery Beat 2.5, released on June 1, 2023, adds Django 4.2 compatibility and improves periodic task management.

Main Features

Periodic tasks are configurable from the Django admin. Django 4.2 support is ensured with updated migrations.

python
# settings.py
INSTALLED_APPS = [
    ...
    'django_celery_beat',
]

CELERY_BEAT_SCHEDULER = 'django_celery_beat.schedulers:DatabaseScheduler'

Sources