[zstd] Update to ~=1.5.7.3 (#15242)

Closes: #15239
Diff: https://github.com/sergey-dryabzhinsky/python-zstd/compare/v1.5.7.1...v1.5.7.3
This commit is contained in:
Semyon Moroz
2026-01-09 10:02:28 +00:00
committed by GitHub
parent 9a175299c4
commit 63ea326f8c
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
version = "~=1.5.7.1"
version = "~=1.5.7.3"
upstream_repository = "https://github.com/sergey-dryabzhinsky/python-zstd"
+6
View File
@@ -4,7 +4,9 @@ class Error(Exception): ...
def ZSTD_compress(data: ReadableBuffer, level: int = ..., threads: int = ..., /) -> bytes: ...
compress_old = ZSTD_compress
compress = ZSTD_compress
compress2 = ZSTD_compress
compress_real_mt = ZSTD_compress
dumps = ZSTD_compress
encode = ZSTD_compress
@@ -22,6 +24,8 @@ loads = ZSTD_uncompress
decode = ZSTD_uncompress
def ZSTD_version() -> str: ...
def ZSTD_version_compiled() -> str: ...
def ZSTD_version_loaded() -> str: ...
def ZSTD_version_number() -> int: ...
def ZSTD_threads_count() -> int: ...
def ZSTD_max_threads_count() -> int: ...
@@ -36,4 +40,6 @@ def ZSTD_is_debug_enabled() -> int: ...
def ZSTD_is_debug_error_enabled() -> int: ...
def ZSTD_is_debug_info_enabled() -> int: ...
def ZSTD_is_debug_notice_enabled() -> int: ...
def ZSTD_setCpuCoresCacheTTL(ttl: int, /) -> int: ...
def ZSTD_stopCpuCoresCache() -> int: ...
def version() -> str: ...