increment version

This commit is contained in:
Fabian Dill 2020-12-06 14:40:57 +01:00
parent 93239cf763
commit c53798bdf8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]:
return tuple(int(piece, 10) for piece in version.split("."))
__version__ = "3.4.1"
__version__ = "3.4.2"
_version_tuple = tuplize_version(__version__)
import os