Releases: pauldmccarthy/indexed_gzip
Releases · pauldmccarthy/indexed_gzip
0.8.8
Changes in this release:
- Fixed bug affecting files which were an exact multiple of the read buffer
size.
0.8.7
Changes in this release:
- Internal changes to how file handles are managed, to improve Windows
compatibility. - The
_IndexedGzipFile.read
method now acquires a single file handle, rather
than opening/closing multiple handles across calls tozran_read
.
0.8.6
0.8.5
Changes in this release:
- Minor changes to packging.
0.8.4
Changes in this release:
- Removed
pytest-runner
as a dependency.
0.8.3
0.8.2
Changes in this release:
- Bugfix in deprecated
SafeIndexedGzipFile
.
0.8.1
Changes in this release:
- Updated conda metadata.
0.8.0
Changes in this release:
- Added ability to import/export the index, via new
import_index
and
export_index
methods on theIndexedGzipFile
class (#7, #8) - thanks
@ozars ! - Deprecated
SafeIndexedGzipFile
- theIndexedGzipFile
is now
thread-safe, and has a read buffer. If you don't want buffering
or thread-safety, use the_IndexedGzipFile
class. - Fixed bug in
seek
method - was not working with negative offsets. - More unit tests, and code coverage of
.py
and.pyx
files.
0.7.1
Changes in this release:
- Added
.conda/meta.yaml
file for building conda packages