Skip to content
Snippets Groups Projects
Verified Commit 3f25b0c1 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'master' into fix/django-titofisto-0.2.0

parents f86763cb 918140e9
No related branches found
No related tags found
1 merge request!771Update django-titofisto to support public namespace
Pipeline #40164 passed
......@@ -14,6 +14,11 @@ Fixed
* Make style.css and favicons cachable.
Removed
~~~~~~~
* Remove fallback code from optional Celery as it's now non-optional.
`2.1`_ - 2021-11-05
-------------------
......
from importlib import metadata
try:
from .celery import app as celery_app
except ModuleNotFoundError:
# Celery is not available
celery_app = None
from .celery import app as celery_app # noqa
try:
__version__ = metadata.distribution("AlekSIS-Core").version
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment