CP-2184 use single version

This commit is contained in:
Bruno Marques 2024-06-07 10:19:34 +01:00
parent 99613cb252
commit cf26bad624
2 changed files with 3 additions and 3 deletions

View File

@ -4,5 +4,3 @@ commit = False
tag = False
[bumpversion:file:thousandeyes-sdk-core/src/thousandeyes_sdk/core/__init__.py]
[bumpversion:file:thousandeyes-sdk-core/src/thousandeyes_sdk/core/version.py]

View File

@ -1,4 +1,6 @@
import thousandeyes_sdk.core
class Version:
@staticmethod
def get() -> str:
return "1.0.0"
return thousandeyes_sdk.core.__version__