2.0 development branch

This commit is contained in:
medmunds
2015-05-14 10:10:42 -07:00
parent 1d086f85f4
commit a658e12595
2 changed files with 9 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
VERSION = (1, 5, 0, 'dev') # Remove the 'dev' component in release branches
VERSION = (2, 0, 0, 'dev') # Remove the 'dev' component in release branches
__version__ = '.'.join([str(x) for x in VERSION[:3]]) # major.minor.patch
if len(VERSION) > 3: # x.y.z-pre.release (note the hyphen)
__version__ += '-' + '.'.join([str(x) for x in VERSION[3:]])