Set max_window_size=2147483648 for zstd

This commit is contained in:
simon987 2022-01-29 10:44:38 -05:00
parent d578be3218
commit 084acbe184
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ def ndjson_iter(*files, compression=""):
line_iter = BufferedReader(gzip.open(file))
elif compression == COMPRESSION_ZSTD:
fp = open(file, "rb")
dctx = zstandard.ZstdDecompressor()
dctx = zstandard.ZstdDecompressor(max_window_size=2147483648)
reader = dctx.stream_reader(fp)
line_iter = BufferedReader(reader)

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.74",
version="1.75",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",