diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-24 13:03:06 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-24 13:15:37 +0300 |
commit | 29d2318eb62c7e894d88fc6c82062edc7d28406a (patch) | |
tree | d8c2140013365c0af113424fe7039ac900d56034 /contrib | |
parent | d979048e3e02174e63290ecbc117407a9b7d7217 (diff) | |
download | ydb-29d2318eb62c7e894d88fc6c82062edc7d28406a.tar.gz |
Intermediate changes
commit_hash:0bdfe3f6e2dcca5918fe9f0f47fcc872f78dc2b3
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/python/ydb/py3/.dist-info/METADATA | 2 | ||||
-rw-r--r-- | contrib/python/ydb/py3/ya.make | 2 | ||||
-rw-r--r-- | contrib/python/ydb/py3/ydb/_topic_writer/topic_writer_asyncio.py | 2 | ||||
-rw-r--r-- | contrib/python/ydb/py3/ydb/ydb_version.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/python/ydb/py3/.dist-info/METADATA b/contrib/python/ydb/py3/.dist-info/METADATA index 756e15d29a..8e8b79f6ab 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.18.10 +Version: 3.18.11 Summary: YDB Python SDK Home-page: http://github.com/ydb-platform/ydb-python-sdk Author: Yandex LLC diff --git a/contrib/python/ydb/py3/ya.make b/contrib/python/ydb/py3/ya.make index a643d0b0b4..284cfb73d0 100644 --- a/contrib/python/ydb/py3/ya.make +++ b/contrib/python/ydb/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(3.18.10) +VERSION(3.18.11) LICENSE(Apache-2.0) diff --git a/contrib/python/ydb/py3/ydb/_topic_writer/topic_writer_asyncio.py b/contrib/python/ydb/py3/ydb/_topic_writer/topic_writer_asyncio.py index c7f88a42a3..d759072c22 100644 --- a/contrib/python/ydb/py3/ydb/_topic_writer/topic_writer_asyncio.py +++ b/contrib/python/ydb/py3/ydb/_topic_writer/topic_writer_asyncio.py @@ -307,7 +307,7 @@ class WriterAsyncIOReconnector: def _prepare_internal_messages(self, messages: List[PublicMessage]) -> List[InternalMessage]: if self._settings.auto_created_at: - now = datetime.datetime.now() + now = datetime.datetime.now(datetime.timezone.utc) else: now = None diff --git a/contrib/python/ydb/py3/ydb/ydb_version.py b/contrib/python/ydb/py3/ydb/ydb_version.py index 6d13618e64..c51c9d45d8 100644 --- a/contrib/python/ydb/py3/ydb/ydb_version.py +++ b/contrib/python/ydb/py3/ydb/ydb_version.py @@ -1 +1 @@ -VERSION = "3.18.10" +VERSION = "3.18.11" |