django-cachalot/cachalot/__init__.py
2022-08-26 22:06:52 -04:00

10 lines
306 B
Python

VERSION = (2, 5, 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: # pragma: no cover
default_app_config = "cachalot.apps.CachalotConfig"