Skip to content

Releases: pauldmccarthy/indexed_gzip

1.3.1

25 Jun 20:25
5797592
Compare
Choose a tag to compare

Changes in this release:

  • Reverted the error type raised by the IndexedGzipFile.seek to ValueError, as nibabel assumes that the seek method of file objects raise a ValueError if SEEK_END is not supported.

v1.3.0: Merge pull request #37 from pauldmccarthy/enh/seek_end

25 Jun 08:59
b13f3da
Compare
Choose a tag to compare

Changes in this release:

  • The IndexedGzipFile.seek method now accepts seeking from the end of uncompressed stream via SEEK_END, as long as the index has been built (#37).

1.2.0

14 May 14:56
Compare
Choose a tag to compare

Changes in this release:

  • New IndexedGzipFile.seek_points method, which returns the compressed and
    uncompressed seek point locations.

1.1.0

21 Apr 08:39
c101b64
Compare
Choose a tag to compare
1.1.0 Pre-release
Pre-release

Changes in this release:

  • IndexedGzipFile objects are now picklable, as long as they are created with the default setting of drop_handles=True, and with a filename and not an open fileobj (#28, #31).
  • Changed the return type of zran_tell from long to uint64_t, because the former is not guaranteed to be 64 bit (#29, #30).
  • Changed the zran_index_t.compressed_size and uncompressed_size fields from size_t to uint64_t because the former is not guaranteed to be 64 bit.

1.0.0

22 Feb 00:34
85e7f2a
Compare
Choose a tag to compare

Changes in this release:

  • Removed the deprecated fid argument to the IndexedGzipFile constructor.
  • Removed the SafeIndexedGzipFile.

0.8.10

15 May 09:11
2aa8d00
Compare
Choose a tag to compare
0.8.10 Pre-release
Pre-release

Changes in this release:

  • Fix to package metadata.

0.8.9

14 May 18:21
aba0358
Compare
Choose a tag to compare
0.8.9 Pre-release
Pre-release

Changes in this release:

  • The IndexedGzipFile.import_index method and zran_import_index function can handle index files which do not contain any index points (#18).

0.8.8

22 Nov 21:16
16554e6
Compare
Choose a tag to compare
0.8.8 Pre-release
Pre-release

Changes in this release:

  • Fixed bug affecting files which were an exact multiple of the read buffer
    size.

0.8.7

03 Aug 12:11
Compare
Choose a tag to compare
0.8.7 Pre-release
Pre-release

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 to zran_read.

0.8.6

27 Jun 07:27
Compare
Choose a tag to compare
0.8.6 Pre-release
Pre-release

Changes in this release:

  • Workaround for issues with Python 2.7 and Cython < 0.26 (#10).