Skip to content

Commit d8eee2f

Browse files
committed
fixed minor issue in SDK imports
1 parent 29316f0 commit d8eee2f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.9.0 ##
2+
3+
* fixed minor issue in SDK imports for Python 2.
4+
15
## 2.7.0 ##
26

37
* fixes in TxContext in ydb.aio module.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="ydb",
9-
version="2.8.0",
9+
version="2.9.0",
1010
description="YDB Python SDK",
1111
author="Yandex LLC",
1212
author_email="[email protected]",

ydb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717

1818
try:
1919
import ydb.aio as aio # noqa
20-
except ImportError:
20+
except Exception:
2121
pass

ydb/ydb_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.8.0"
1+
VERSION = "2.9.0"

0 commit comments

Comments
 (0)