Skip to content

Commit

Permalink
setuptool_scm version file
Browse files Browse the repository at this point in the history
  • Loading branch information
lmickes committed Apr 7, 2024
1 parent 548d392 commit daa0e61
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/pyWitness/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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 = '1.4.2.dev1+g548d392'
__version_tuple__ = version_tuple = (1, 4, 2, 'dev1', 'g548d392')

0 comments on commit daa0e61

Please sign in to comment.