Added the APscheduler 3.9.1 source into the Linspector source tree.

This commit is contained in:
Johannes Findeisen 2022-09-28 02:21:09 +02:00
commit 3d9e919b05
40 changed files with 4629 additions and 1 deletions

10
apscheduler/__init__.py Normal file
View file

@ -0,0 +1,10 @@
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