mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-05-09 13:14:44 +00:00
10 lines
306 B
Python
10 lines
306 B
Python
VERSION = (2, 5, 0)
|
|
__version__ = ".".join(map(str, VERSION))
|
|
|
|
try:
|
|
from django import VERSION as DJANGO_VERSION
|
|
|
|
if DJANGO_VERSION < (3, 2):
|
|
default_app_config = "cachalot.apps.CachalotConfig"
|
|
except ImportError: # pragma: no cover
|
|
default_app_config = "cachalot.apps.CachalotConfig"
|