From 1c08ebff902469fc7e8cf29008425279a375899b Mon Sep 17 00:00:00 2001 From: Oleg Ovcharuk Date: Tue, 30 Jul 2024 12:52:12 +0300 Subject: [PATCH] Add dunder version to ydb package --- ydb/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ydb/__init__.py b/ydb/__init__.py index 0a09834b..6f66e5f7 100644 --- a/ydb/__init__.py +++ b/ydb/__init__.py @@ -2,6 +2,10 @@ __path__ = extend_path(__path__, __name__) +from .ydb_version import VERSION + +__version__ = VERSION + from .credentials import * # noqa from .driver import * # noqa from .global_settings import * # noqa