1
0
Fork 0

dont track _version

main
Jeff Moe 2024-02-11 13:12:12 -07:00
parent 1687c0d5b6
commit 12b326f11b
2 changed files with 1 additions and 16 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
.python-version
build
env
src/*/_version.py
tmp
venv
*.swp

View File

@ -1,16 +0,0 @@
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '0.0.3.dev3+g29a188c.d20240211'
__version_tuple__ = version_tuple = (0, 0, 3, 'dev3', 'g29a188c.d20240211')