Skip to content

Commit b6f0c52

Browse files
committed
Intermediate changes
commit_hash:c85ed364deb6170df155fcf0ec427ea35a932fa5
1 parent 484b451 commit b6f0c52

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

contrib/python/lz4/py3/.dist-info/METADATA

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Metadata-Version: 2.2
1+
Metadata-Version: 2.4
22
Name: lz4
3-
Version: 4.4.3
3+
Version: 4.4.4
44
Summary: LZ4 Bindings for Python
55
Home-page: https://github.com/python-lz4/python-lz4
66
Author: Jonathan Underwood
@@ -31,6 +31,7 @@ Dynamic: author-email
3131
Dynamic: classifier
3232
Dynamic: description
3333
Dynamic: home-page
34+
Dynamic: license-file
3435
Dynamic: provides-extra
3536
Dynamic: requires-python
3637
Dynamic: summary

contrib/python/lz4/py3/lz4/version.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
# file generated by setuptools_scm
1+
# file generated by setuptools-scm
22
# don't change, don't track in version control
3+
4+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5+
36
TYPE_CHECKING = False
47
if TYPE_CHECKING:
5-
from typing import Tuple, Union
8+
from typing import Tuple
9+
from typing import Union
10+
611
VERSION_TUPLE = Tuple[Union[int, str], ...]
712
else:
813
VERSION_TUPLE = object
@@ -12,5 +17,5 @@
1217
__version_tuple__: VERSION_TUPLE
1318
version_tuple: VERSION_TUPLE
1419

15-
__version__ = version = '4.4.3'
16-
__version_tuple__ = version_tuple = (4, 4, 3)
20+
__version__ = version = '4.4.4'
21+
__version_tuple__ = version_tuple = (4, 4, 4)

contrib/python/lz4/py3/ya.make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PY3_LIBRARY()
44

5-
VERSION(4.4.3)
5+
VERSION(4.4.4)
66

77
LICENSE(BSD-3-Clause)
88

0 commit comments

Comments
 (0)