From 7260fffcfae37e3c5527c6f586401a00724e039b Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 13 Sep 2020 17:30:56 +0200 Subject: [PATCH] 3.0.0 --- Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.py b/Utils.py index 01267ed9..380483b3 100644 --- a/Utils.py +++ b/Utils.py @@ -6,7 +6,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]: return tuple(int(piece, 10) for piece in version.split(".")) -__version__ = "2.5.4" +__version__ = "3.0.0" _version_tuple = tuplize_version(__version__) import os