File:
[cvs.NetBSD.org] /
pkgsrc /
devel /
py-xopen /
Makefile
Revision
1.30:
download - view:
text,
annotated -
select for diffs
Wed Jan 31 11:53:35 2024 UTC (13 months, 2 weeks ago) by
adam
Branches:
MAIN
CVS tags:
HEAD
py-xopen: updated to 1.9.0
v1.9.0
* The python-isal compression backend is now only used for compression
levels 1 and 2. Contrary to other backends, python-isal level 0 gave
compressed rather than uncompressed data in gzip format. Level 3 on
python-isal did not provide better compression than level 2.
* PipedCompressionReader/Writer now derive from the `io.IOBase
<https://docs.python.org/3/library/io.html#io.IOBase>`_ abstract class.
* The gzip default compression level is now 1 when no value is provided
by the calling function. The default used to be determined by the backend.
* xopen now uses zlib-ng when available and applicable.
* Piped ``igzip`` is no longer used as a (de)compression backend as
python-isal's threaded mode is a better choice in all use cases.