django-cachalot/cachalot/__init__.py
2021-11-03 13:04:38 -04:00

10 lines
306 B
Python

VERSION = (2, 4, 4)
__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"