Version 1.4.2
-
Make sure that
__all__is only defined once, as a list ofstr. Some
programs (e.g. PyInstaller) naively parse init.py files, and if
__all__is defined twice, the second one will be ignored. This can cause
__all__to appear as a list ofunicodeon Python 2. -
Create wheel with correct conditional dependencies and license file.
-
Change the
licensemeta-data from the full license text, to just a short
string, as specified in [1][2].[1] https://docs.python.org/3.5/distutils/setupscript.html#additional-meta-data
-
Include entire test/ directory in source distribution. test/init.py was
previously missing. -
Update documentation.