Bug-fix release: Windows import crash + PyPI project page
Fixed
import datawranglercrashed on Windows (#32).config.iniresolved the home directory viaos.getenv('HOME'), which is unset on Windows (it usesUSERPROFILE), so the data-cache path evaluatedos.path.join(None, ...)and raisedTypeErrorat import time. The config now usesos.path.expanduser('~'), which resolves correctly on all platforms. Added a regression test that importsdatawranglerin a fresh subprocess withHOME/USERPROFILEstripped from the environment.
Changed
- The PyPI project page now displays the full README instead of a bare link to the documentation (
setup.pyembedsREADME.rstas the package'slong_description).
Full Changelog: v0.5.0...v0.5.1