Bump version to 3.2.0

This commit is contained in:
CaitSith2 2020-10-14 20:51:10 -07:00
parent 4e0a2ad696
commit 99677e8d8c
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.1.1"
__version__ = "3.2.0"
_version_tuple = tuplize_version(__version__)
import os