mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-04-03 14:50:41 +00:00
11 lines
301 B
Python
11 lines
301 B
Python
import django
|
|
from pkg_resources import DistributionNotFound, get_distribution
|
|
|
|
try:
|
|
__version__ = get_distribution("django-auditlog").version
|
|
except DistributionNotFound:
|
|
# package is not installed
|
|
pass
|
|
|
|
if django.VERSION < (3, 2):
|
|
default_app_config = "auditlog.apps.AuditlogConfig"
|