fix: python versions for windows and linux, and incrementing version

This commit is contained in:
Mathew Guest 2025-02-22 20:58:58 -07:00
parent d15517623d
commit 3e8ad8fbb3
2 changed files with 4 additions and 4 deletions

@ -1 +1,2 @@
3.8.20
3.8.8

@ -5,8 +5,7 @@ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple
from typing import Union
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
@ -17,5 +16,5 @@ __version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '0.3.0.dev6+g10e873d.d20250223'
__version_tuple__ = version_tuple = (0, 3, 0, 'dev6', 'g10e873d.d20250223')
__version__ = version = "0.3.0.dev7+gd155176.d20250223"
__version_tuple__ = version_tuple = (0, 3, 0, "dev7", "gd155176.d20250223")