aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-06-07 13:52:03 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-06-07 14:01:01 +0300
commit7de06604a32b63b818e3286ec5006a8c2606ffa1 (patch)
tree147549566ab650a2ecfe5d986e74920f5e292611
parent89aed776bc90bfaf56bab8fb2d4cd1a47a6c8c86 (diff)
downloadydb-7de06604a32b63b818e3286ec5006a8c2606ffa1.tar.gz
Intermediate changes
-rw-r--r--contrib/python/ydb/py3/.dist-info/METADATA2
-rw-r--r--contrib/python/ydb/py3/LICENSE5
-rw-r--r--contrib/python/ydb/py3/ya.make2
-rw-r--r--contrib/python/ydb/py3/ydb/_grpc/grpcwrapper/common_utils.py2
-rw-r--r--contrib/python/ydb/py3/ydb/ydb_version.py2
5 files changed, 7 insertions, 6 deletions
diff --git a/contrib/python/ydb/py3/.dist-info/METADATA b/contrib/python/ydb/py3/.dist-info/METADATA
index 9842d0216b8..d75da64fc14 100644
--- a/contrib/python/ydb/py3/.dist-info/METADATA
+++ b/contrib/python/ydb/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: ydb
-Version: 3.11.3
+Version: 3.11.4
Summary: YDB Python SDK
Home-page: http://github.com/ydb-platform/ydb-python-sdk
Author: Yandex LLC
diff --git a/contrib/python/ydb/py3/LICENSE b/contrib/python/ydb/py3/LICENSE
index cabac2dec9c..84a3a35579f 100644
--- a/contrib/python/ydb/py3/LICENSE
+++ b/contrib/python/ydb/py3/LICENSE
@@ -1,5 +1,4 @@
-Copyright 2022 YANDEX LLC
- Apache License
+ Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
@@ -187,7 +186,7 @@ Copyright 2022 YANDEX LLC
same "printed page" as the copyright notice for easier
identification within third-party archives.
-Copyright 2022 YANDEX LLC
+ Copyright 2022-2024 YANDEX LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/contrib/python/ydb/py3/ya.make b/contrib/python/ydb/py3/ya.make
index b9639b750d8..12ac0b16000 100644
--- a/contrib/python/ydb/py3/ya.make
+++ b/contrib/python/ydb/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(3.11.3)
+VERSION(3.11.4)
LICENSE(Apache-2.0)
diff --git a/contrib/python/ydb/py3/ydb/_grpc/grpcwrapper/common_utils.py b/contrib/python/ydb/py3/ydb/_grpc/grpcwrapper/common_utils.py
index 98bcc5d2ecd..66ef0a8c855 100644
--- a/contrib/python/ydb/py3/ydb/_grpc/grpcwrapper/common_utils.py
+++ b/contrib/python/ydb/py3/ydb/_grpc/grpcwrapper/common_utils.py
@@ -289,6 +289,7 @@ def proto_duration_from_timedelta(t: Optional[datetime.timedelta]) -> Optional[P
res = ProtoDuration()
res.FromTimedelta(t)
+ return res
def proto_timestamp_from_datetime(t: Optional[datetime.datetime]) -> Optional[ProtoTimeStamp]:
@@ -297,6 +298,7 @@ def proto_timestamp_from_datetime(t: Optional[datetime.datetime]) -> Optional[Pr
res = ProtoTimeStamp()
res.FromDatetime(t)
+ return res
def datetime_from_proto_timestamp(
diff --git a/contrib/python/ydb/py3/ydb/ydb_version.py b/contrib/python/ydb/py3/ydb/ydb_version.py
index 7504dfd9c1e..b3b3b4cbd59 100644
--- a/contrib/python/ydb/py3/ydb/ydb_version.py
+++ b/contrib/python/ydb/py3/ydb/ydb_version.py
@@ -1 +1 @@
-VERSION = "3.11.3"
+VERSION = "3.11.4"