mirror of https://github.com/evilhero/mylar
9 lines
361 B
Python
9 lines
361 B
Python
# These will be removed in APScheduler 4.0.
|
|
#release = __import__('pkg_resources').get_distribution('APScheduler').version.split('-')[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])
|
|
|
|
version_info = (3, 3, 1)
|
|
release = '3.3.1'
|
|
version = __version__ = '3.3.1'
|