This commit is contained in:
Fabian Dill
2020-09-20 00:34:35 +02:00
parent 20d9c08e4e
commit 37a3c8f0d5
2 changed files with 3 additions and 2 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.1.0"
__version__ = "3.1.1"
_version_tuple = tuplize_version(__version__)
import os