Updated version calculation
This commit is contained in:
parent
7c08c140da
commit
d645ce9745
2 changed files with 6 additions and 8 deletions
|
|
@ -16,9 +16,8 @@ VERSION = (0, 6, 20)
|
|||
|
||||
|
||||
def get_version():
|
||||
version = '%s.%s' % (VERSION[0], VERSION[1])
|
||||
if VERSION[2]:
|
||||
version = '%s.%s' % (version, VERSION[2])
|
||||
return version
|
||||
if isinstance(VERSION[-1], basestring):
|
||||
return '.'.join(map(str, VERSION[:-1])) + VERSION[-1]
|
||||
return '.'.join(map(str, VERSIONs))
|
||||
|
||||
__version__ = get_version()
|
||||
|
|
|
|||
7
setup.py
7
setup.py
|
|
@ -18,10 +18,9 @@ except:
|
|||
|
||||
|
||||
def get_version(version_tuple):
|
||||
version = '%s.%s' % (version_tuple[0], version_tuple[1])
|
||||
if version_tuple[2]:
|
||||
version = '%s.%s' % (version, version_tuple[2])
|
||||
return version
|
||||
if isinstance(version_tuple[-1], basestring):
|
||||
return '.'.join(map(str, version_tuple[:-1])) + version_tuple[-1]
|
||||
return '.'.join(map(str, version_tuple))
|
||||
|
||||
# Dirty hack to get version number from monogengine/__init__.py - we can't
|
||||
# import it as it depends on PyMongo and PyMongo isn't installed until this
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue