Skip to content

Commit 83213f3

Browse files
committed
update
1 parent 139db61 commit 83213f3

1 file changed

Lines changed: 22 additions & 4 deletions

File tree

PyOptik/_version.py

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,34 @@
1-
# file generated by setuptools_scm
1+
# file generated by setuptools-scm
22
# don't change, don't track in version control
3+
4+
__all__ = [
5+
"__version__",
6+
"__version_tuple__",
7+
"version",
8+
"version_tuple",
9+
"__commit_id__",
10+
"commit_id",
11+
]
12+
313
TYPE_CHECKING = False
414
if TYPE_CHECKING:
5-
from typing import Tuple, Union
15+
from typing import Tuple
16+
from typing import Union
17+
618
VERSION_TUPLE = Tuple[Union[int, str], ...]
19+
COMMIT_ID = Union[str, None]
720
else:
821
VERSION_TUPLE = object
22+
COMMIT_ID = object
923

1024
version: str
1125
__version__: str
1226
__version_tuple__: VERSION_TUPLE
1327
version_tuple: VERSION_TUPLE
28+
commit_id: COMMIT_ID
29+
__commit_id__: COMMIT_ID
30+
31+
__version__ = version = '2.0.6'
32+
__version_tuple__ = version_tuple = (2, 0, 6)
1433

15-
__version__ = version = '1.12.0'
16-
__version_tuple__ = version_tuple = (1, 12, 0)
34+
__commit_id__ = commit_id = 'g139db614b'

0 commit comments

Comments
 (0)