apscheduler: 3.0.1 -> 3.10.1

This commit is contained in:
rembo10
2023-06-09 07:26:41 +05:30
parent 4d14b028ff
commit 4aaeaa704f
34 changed files with 1850 additions and 649 deletions
+9 -4
View File
@@ -1,5 +1,10 @@
version_info = (3, 0, 1)
version = '3.0.1'
release = '3.0.1'
from pkg_resources import get_distribution, DistributionNotFound
__version__ = release # PEP 396
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