You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
380 B
Python
15 lines
380 B
Python
"""Version number
|
|
|
|
"""
|
|
from __future__ import division, absolute_import, print_function
|
|
|
|
version = '1.00'
|
|
release = False
|
|
|
|
if not release:
|
|
from . import core
|
|
from . import extras
|
|
revision = [core.__revision__.split(':')[-1][:-1].strip(),
|
|
extras.__revision__.split(':')[-1][:-1].strip(),]
|
|
version += '.dev%04i' % max([int(rev) for rev in revision])
|