We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29316f0 commit d8eee2fCopy full SHA for d8eee2f
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 2.9.0 ##
2
+
3
+* fixed minor issue in SDK imports for Python 2.
4
5
## 2.7.0 ##
6
7
* fixes in TxContext in ydb.aio module.
setup.py
@@ -6,7 +6,7 @@
setuptools.setup(
8
name="ydb",
9
- version="2.8.0",
+ version="2.9.0",
10
description="YDB Python SDK",
11
author="Yandex LLC",
12
author_email="ydb@yandex-team.ru",
ydb/__init__.py
@@ -17,5 +17,5 @@
17
18
try:
19
import ydb.aio as aio # noqa
20
-except ImportError:
+except Exception:
21
pass
ydb/ydb_version.py
@@ -1 +1 @@
-VERSION = "2.8.0"
+VERSION = "2.9.0"
0 commit comments