diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-11-03 10:59:55 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-11-03 11:21:56 +0300 |
commit | 67017f403ebe21c47e170d88611517911405dccd (patch) | |
tree | ee30f4b42cd0763d08222f82bdded48bfccf239c /contrib/python/pytest-mock/py3/pytest_mock/_version.py | |
parent | ebe5271b6b00155b318cd9b95b3ae7bc2cde1d10 (diff) | |
download | ydb-67017f403ebe21c47e170d88611517911405dccd.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/pytest-mock/py3/pytest_mock/_version.py')
-rw-r--r-- | contrib/python/pytest-mock/py3/pytest_mock/_version.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/contrib/python/pytest-mock/py3/pytest_mock/_version.py b/contrib/python/pytest-mock/py3/pytest_mock/_version.py index cb3b8cfc44b..9e1a89958d8 100644 --- a/contrib/python/pytest-mock/py3/pytest_mock/_version.py +++ b/contrib/python/pytest-mock/py3/pytest_mock/_version.py @@ -1,4 +1,16 @@ # file generated by setuptools_scm # don't change, don't track in version control -__version__ = version = '3.11.1' -__version_tuple__ = version_tuple = (3, 11, 1) +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 = '3.12.0' +__version_tuple__ = version_tuple = (3, 12, 0) |