- Added a module definition to
e_compression.c
. This formally defines the lbrary as a Python module, fixing theerror LNK2001: unresolved external symbol PyInit__libe1
that occurs on Windows and allows it to compile correctly. - Changed the method for determining compiled Python module file extensions in
setup.py
fromsysconfig.get_config_vars()
toimportlib.machinery
, which should fix importing problems on Python 3.6 and 3.7.
- Add tests
- Add
decompress
anddecompress_file
functions, which replace the deprecatede_compression
function.
- Initial release.