@ -17,7 +17,7 @@ Release Notes
To avail of fixes in an unreleased version, please download a ZIP file
`directly from GitHub <https://github.com/dw/mitogen/>`_.
v0.2.10 (unreleased)
v0.2.10 (2021-10-28)
--------------------
* :gh:issue:`597` mitogen does not support Ansible 2.8 Python interpreter detection
@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup.
#: Library version as a tuple.
__version__ = (0, 2, 10, 'rc', 1)
__version__ = (0, 2, 10)
#: This is :data:`False` in slave contexts. Previously it was used to prevent
@ -37,7 +37,7 @@ def grep_version():
for line in fp:
if line.startswith('__version__'):
_, _, s = line.partition('=')
return '%i.%i.%i%s%i' % eval(s)
return '%i.%i.%i' % eval(s)
def long_description():