• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# coding=utf-8
2#
3# Copyright (c) 2025 Huawei Device Co., Ltd.
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# file generated by setuptools-scm
17# don't change, don't track in version control
18
19__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
20
21TYPE_CHECKING = False
22if TYPE_CHECKING:
23    from typing import Tuple
24    from typing import Union
25
26    VERSION_TUPLE = Tuple[Union[int, str], ...]
27else:
28    VERSION_TUPLE = object
29
30version: str
31__version__: str
32__version_tuple__: VERSION_TUPLE
33version_tuple: VERSION_TUPLE
34
35__version__ = version = '0.34.1'
36__version_tuple__ = version_tuple = (0, 34, 1)
37