Backwards Compatibility Notes
ZstdCompressor.stream_reader().closed
is now a property instead of a
method (#58).ZstdDecompressor.stream_reader().closed
is now a property instead of a
method (#58).
Changes
- Stop attempting to package Python 3.6 for Miniconda. The latest version of
Miniconda is using Python 3.7. The Python 3.6 Miniconda packages were a lie
since this were built against Python 3.7. ZstdCompressor.stream_reader()
's andZstdDecompressor.stream_reader()
's
closed
attribute is now a read-only property instead of a method. This now
properly matches theIOBase
API and allows instances to be used in more
places that acceptIOBase
instances.