Skip to content

Commit f8062f2

Browse files
committed
Bump version to 0.2.10rc1
1 parent 126dd7e commit f8062f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mitogen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
#: Library version as a tuple.
38-
__version__ = (0, 2, 9)
38+
__version__ = (0, 2, 10, 'rc', 1)
3939

4040

4141
#: This is :data:`False` in slave contexts. Previously it was used to prevent

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def grep_version():
3737
for line in fp:
3838
if line.startswith('__version__'):
3939
_, _, s = line.partition('=')
40-
return '.'.join(map(str, eval(s)))
40+
return '%i.%i.%i%s%i' % eval(s)
4141

4242

4343
def long_description():

0 commit comments

Comments
 (0)