Added the APscheduler 3.9.1 source into the Linspector source tree.
This commit is contained in:
parent
3de67966f4
commit
3d9e919b05
40 changed files with 4629 additions and 1 deletions
10
apscheduler/__init__.py
Normal file
10
apscheduler/__init__.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue