Bump version to 0.2.10rc1

pull/800/head
Alex Willmer 4 years ago
parent 126dd7ed1f
commit f8062f21d6

@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup.
#: Library version as a tuple. #: Library version as a tuple.
__version__ = (0, 2, 9) __version__ = (0, 2, 10, 'rc', 1)
#: This is :data:`False` in slave contexts. Previously it was used to prevent #: This is :data:`False` in slave contexts. Previously it was used to prevent

@ -37,7 +37,7 @@ def grep_version():
for line in fp: for line in fp:
if line.startswith('__version__'): if line.startswith('__version__'):
_, _, s = line.partition('=') _, _, s = line.partition('=')
return '.'.join(map(str, eval(s))) return '%i.%i.%i%s%i' % eval(s)
def long_description(): def long_description():

Loading…
Cancel
Save