>>> v = (1, 2, 3, 'devel', None, 'Kenzo')
>>> version(depth=-1, version_tuple=v)
'1.2.3.devel (Kenzo)'
+ >>> version(depth=4, version_tuple=v)
+ '1.2.3.devel'
"""
if version_tuple == None:
version_tuple = __version__
if version_tuple[patch_index] == None: # No patch field, drop that entry
version_tuple = version_tuple[0:patch_index] \
+ version_tuple[patch_index+1:]
- if depth >= patch_index:
+ if depth > patch_index:
depth -= 1
fields = version_tuple[0:depth]
string = '.'.join([str(x) for x in fields])