mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 02:22:56 +08:00
10 lines
380 B
Python
10 lines
380 B
Python
from pkg_resources import get_distribution, DistributionNotFound
|
|
|
|
try:
|
|
release = get_distribution('APScheduler').version.split('-')[0]
|
|
except DistributionNotFound:
|
|
release = '3.5.0'
|
|
|
|
version_info = tuple(int(x) if x.isdigit() else x for x in release.split('.'))
|
|
version = __version__ = '.'.join(str(x) for x in version_info[:3])
|
|
del get_distribution, DistributionNotFound
|