2019-10-19 08:41:10 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.8.3 v0.8.3 When reading gzipped files, let pigz use at most four threads by default. This \ limit previously only applied when writing to a file. Support Python 3.8 |
2019-09-06 08:04:17 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.8.2 v0.8.2 Skip newly introduced test on Python 2.7 io.TextIOWrapper(PipedGZipReader(...)) does not work, which is needed for the test. |
2019-08-21 14:44:34 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.8.1 v0.8.1 Exiting with a SIGTERM exit code is fine when we sent it When we forcefully close the subprocess with Popen.terminate(), we must not complain that it returns an exit code of -15 (corresponding to SIGTERM). v0.8.0 Speed improvements when iterating over gzipped files. |
2019-07-01 13:00:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.7.3 v0.7.3: Add PipedGzipReader.flush() To Do: Perhaps derive from IOBase instead. See a Python implementation in _pyio. v0.7.2: Skip test on Python 2.7 I don’t want to entirely give up Python 2.7 compatibility, yet, but I also don’t want to spend time fixing this. |
2019-06-21 09:54:16 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.7.1 0.7.1: Add PipedGzipReader.seekable() and .peek() |
2019-06-12 22:34:56 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.7.0 v0.7.0: Add PipedGzipReader.readline() |
2019-05-27 17:31:02 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.6.0 v0.6.0 For reading from gzipped files, xopen will now use a pigz subprocess. This is \ faster than using gzip.open. Python 2 supported will be dropped in one of the next releases. |
2019-04-25 14:44:10 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-xopen: updated to 0.5.1 v0.5.1: Avoid importing pkg_resources, it is slow Instead, use the setuptools_scm feature of generating a _version.py |
2019-02-06 12:23:27 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-xopen: updated to 0.5.0 v0.5.0 By default, pigz is now only allowed to use at most four threads. This hopefully \ reduces problems some users had with too many threads when opening many files at \ the same time. xopen now accepts pathlib.Path objects. |
2019-01-10 10:23:14 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-xopen: updated to 0.4.1 0.4.1: Make setup.py ASCII-only |