aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2025-04-16 08:54:48 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2025-04-16 09:05:17 +0300
commitb6f0c52a251cf119559dd14ea38acf980c6bb224 (patch)
tree0fa95491f22a237705fb46ec1a4b52a1b6188342
parent484b451e13c08c57e3019f9524dad3076c584425 (diff)
downloadydb-b6f0c52a251cf119559dd14ea38acf980c6bb224.tar.gz
Intermediate changes
commit_hash:c85ed364deb6170df155fcf0ec427ea35a932fa5
-rw-r--r--contrib/python/lz4/py3/.dist-info/METADATA5
-rw-r--r--contrib/python/lz4/py3/lz4/version.py13
-rw-r--r--contrib/python/lz4/py3/ya.make2
3 files changed, 13 insertions, 7 deletions
diff --git a/contrib/python/lz4/py3/.dist-info/METADATA b/contrib/python/lz4/py3/.dist-info/METADATA
index ff7ade45593..a57e6022a3f 100644
--- a/contrib/python/lz4/py3/.dist-info/METADATA
+++ b/contrib/python/lz4/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
-Metadata-Version: 2.2
+Metadata-Version: 2.4
Name: lz4
-Version: 4.4.3
+Version: 4.4.4
Summary: LZ4 Bindings for Python
Home-page: https://github.com/python-lz4/python-lz4
Author: Jonathan Underwood
@@ -31,6 +31,7 @@ Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
+Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-python
Dynamic: summary
diff --git a/contrib/python/lz4/py3/lz4/version.py b/contrib/python/lz4/py3/lz4/version.py
index a6ed78c6c3e..2808f61053d 100644
--- a/contrib/python/lz4/py3/lz4/version.py
+++ b/contrib/python/lz4/py3/lz4/version.py
@@ -1,8 +1,13 @@
-# file generated by setuptools_scm
+# file generated by setuptools-scm
# don't change, don't track in version control
+
+__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
+
TYPE_CHECKING = False
if TYPE_CHECKING:
- from typing import Tuple, Union
+ from typing import Tuple
+ from typing import Union
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
-__version__ = version = '4.4.3'
-__version_tuple__ = version_tuple = (4, 4, 3)
+__version__ = version = '4.4.4'
+__version_tuple__ = version_tuple = (4, 4, 4)
diff --git a/contrib/python/lz4/py3/ya.make b/contrib/python/lz4/py3/ya.make
index c25e89eb000..90442055a36 100644
--- a/contrib/python/lz4/py3/ya.make
+++ b/contrib/python/lz4/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(4.4.3)
+VERSION(4.4.4)
LICENSE(BSD-3-Clause)