You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 and ZstdDecompressor.stream_reader()'s closed attribute is now a read-only property instead of a method. This now
properly matches the IOBase API and allows instances to be used in more
places that accept IOBase instances.