diff options
author | AlexSm <alex@ydb.tech> | 2024-01-18 11:28:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 11:28:56 +0100 |
commit | 9d0a3761b3201e0d9db879a7adf91876ebdb0564 (patch) | |
tree | 541d11ac878c18efd7ebca81e35112aa0fef995b /contrib/python/lz4/py3 | |
parent | 404ef8886ecc9736bc58ade6da2fbd83b486a408 (diff) | |
download | ydb-9d0a3761b3201e0d9db879a7adf91876ebdb0564.tar.gz |
Library import 8 (#1074)
* Library import 8
* Add contrib/libs/cxxsupp/libcxx/include/__verbose_abort
Diffstat (limited to 'contrib/python/lz4/py3')
-rw-r--r-- | contrib/python/lz4/py3/.dist-info/METADATA | 10 | ||||
-rw-r--r-- | contrib/python/lz4/py3/lz4/version.py | 16 | ||||
-rw-r--r-- | contrib/python/lz4/py3/ya.make | 2 |
3 files changed, 20 insertions, 8 deletions
diff --git a/contrib/python/lz4/py3/.dist-info/METADATA b/contrib/python/lz4/py3/.dist-info/METADATA index bd01d4f829..c2ff5e7930 100644 --- a/contrib/python/lz4/py3/.dist-info/METADATA +++ b/contrib/python/lz4/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: lz4 -Version: 4.3.2 +Version: 4.3.3 Summary: LZ4 Bindings for Python Home-page: https://github.com/python-lz4/python-lz4 Author: Jonathan Underwood @@ -10,20 +10,20 @@ Classifier: License :: OSI Approved :: BSD License Classifier: Intended Audience :: Developers Classifier: Programming Language :: C Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 -Requires-Python: >=3.7 +Classifier: Programming Language :: Python :: 3.12 +Requires-Python: >=3.8 License-File: LICENSE Provides-Extra: docs -Requires-Dist: sphinx (>=1.6.0) ; extra == 'docs' +Requires-Dist: sphinx >=1.6.0 ; extra == 'docs' Requires-Dist: sphinx-bootstrap-theme ; extra == 'docs' Provides-Extra: flake8 Requires-Dist: flake8 ; extra == 'flake8' Provides-Extra: tests -Requires-Dist: pytest (!=3.3.0) ; extra == 'tests' +Requires-Dist: pytest !=3.3.0 ; extra == 'tests' Requires-Dist: psutil ; extra == 'tests' Requires-Dist: pytest-cov ; extra == 'tests' diff --git a/contrib/python/lz4/py3/lz4/version.py b/contrib/python/lz4/py3/lz4/version.py index 1e7ce2f6f5..4dc4c33d63 100644 --- a/contrib/python/lz4/py3/lz4/version.py +++ b/contrib/python/lz4/py3/lz4/version.py @@ -1,4 +1,16 @@ # file generated by setuptools_scm # don't change, don't track in version control -__version__ = version = '4.3.2' -__version_tuple__ = version_tuple = (4, 3, 2) +TYPE_CHECKING = False +if TYPE_CHECKING: + from typing import Tuple, Union + VERSION_TUPLE = Tuple[Union[int, str], ...] +else: + VERSION_TUPLE = object + +version: str +__version__: str +__version_tuple__: VERSION_TUPLE +version_tuple: VERSION_TUPLE + +__version__ = version = '4.3.3' +__version_tuple__ = version_tuple = (4, 3, 3) diff --git a/contrib/python/lz4/py3/ya.make b/contrib/python/lz4/py3/ya.make index c703ac87ce..73f9dcad03 100644 --- a/contrib/python/lz4/py3/ya.make +++ b/contrib/python/lz4/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(4.3.2) +VERSION(4.3.3) LICENSE(BSD-3-Clause) |