mirror of
https://github.com/jazzband/django-axes.git
synced 2026-04-25 09:14:47 +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")
|