Skip to content

Commit e83a983

Browse files
committed
Update: backend/_version.py
1 parent 6ebd4f7 commit e83a983

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

backend/_version.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
]
1212

1313
TYPE_CHECKING = False
14-
if TYPE_CHECKING:
15-
from typing import Tuple, Union
1614

15+
if TYPE_CHECKING:
1716
VERSION_TUPLE = tuple[int | str, ...]
18-
COMMIT_ID = Union[str, None]
17+
COMMIT_ID = str | None
18+
1919
else:
2020
VERSION_TUPLE = object
2121
COMMIT_ID = object
@@ -27,7 +27,7 @@
2727
commit_id: COMMIT_ID
2828
__commit_id__: COMMIT_ID
2929

30-
__version__ = version = "0.1.dev2+g6bfb322d1.d20251128"
31-
__version_tuple__ = version_tuple = (0, 1, "dev2", "g6bfb322d1.d20251128")
30+
__version__ = version = '0.1.dev17+g6ebd4f70c.d20251203'
31+
__version_tuple__ = version_tuple = (0, 1, 'dev17', 'g6ebd4f70c.d20251203')
3232

33-
__commit_id__ = commit_id = "g6bfb322d1"
33+
__commit_id__ = commit_id = 'g6ebd4f70c'

0 commit comments

Comments
 (0)