mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
10 lines
286 B
Python
10 lines
286 B
Python
VERSION = (2, 4, 2)
|
|
__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:
|
|
default_app_config = "cachalot.apps.CachalotConfig"
|