mirror of
https://git.zavage.net/Zavage-Software/app_skellington.git
synced 2025-04-11 11:16:25 -06:00
fix: python versions for windows and linux, and incrementing version
This commit is contained in:
parent
d15517623d
commit
3e8ad8fbb3
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user