mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
8 lines
273 B
Python
8 lines
273 B
Python
try:
|
|
from importlib.metadata import version # New in Python 3.8
|
|
except ImportError:
|
|
from pkg_resources import get_distribution # from setuptools, deprecated
|
|
|
|
__version__ = get_distribution("django-axes").version
|
|
else:
|
|
__version__ = version("django-axes")
|