Skip to content

Commit 42cb97f

Browse files
author
André Böni
committed
+ version file
1 parent e612490 commit 42cb97f

File tree

3 files changed

+229
-18
lines changed

3 files changed

+229
-18
lines changed

gaitalytics/_version.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# file generated by setuptools_scm
2+
# don't change, don't track in version control
3+
TYPE_CHECKING = False
4+
if TYPE_CHECKING:
5+
from typing import Tuple, Union
6+
VERSION_TUPLE = Tuple[Union[int, str], ...]
7+
else:
8+
VERSION_TUPLE = object
9+
10+
version: str
11+
__version__: str
12+
__version_tuple__: VERSION_TUPLE
13+
version_tuple: VERSION_TUPLE
14+
15+
__version__ = version = '0.2.1.dev0+ge612490.d20240729'
16+
__version_tuple__ = version_tuple = (0, 2, 1, 'dev0', 'ge612490.d20240729')

pixi.lock

Lines changed: 212 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ wheel = "python -m build --wheel -n"
9696
packages = ["gaitalytics", "gaitalytics.utils"]
9797

9898
[tool.setuptools_scm]
99+
version_file = "gaitalytics/_version.py"
99100

100101
[tool.ruff-lint]
101102
select = [

0 commit comments

Comments
 (0)