Open Breaking changes

This commit is contained in:
Fabian Dill
2020-10-18 23:07:48 +02:00
parent 2ae5f316dc
commit 94dafa3c55
4 changed files with 7 additions and 11 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.2.1"
__version__ = "1.0.0"
_version_tuple = tuplize_version(__version__)
import os