Skip to content

v0.5.1

Latest

Choose a tag to compare

@jeremymanning jeremymanning released this 04 Jul 21:28
· 2 commits to main since this release

Bug-fix release: Windows import crash + PyPI project page

Fixed

  • import datawrangler crashed on Windows (#32). config.ini resolved the home directory via os.getenv('HOME'), which is unset on Windows (it uses USERPROFILE), so the data-cache path evaluated os.path.join(None, ...) and raised TypeError at import time. The config now uses os.path.expanduser('~'), which resolves correctly on all platforms. Added a regression test that imports datawrangler in a fresh subprocess with HOME/USERPROFILE stripped from the environment.

Changed

  • The PyPI project page now displays the full README instead of a bare link to the documentation (setup.py embeds README.rst as the package's long_description).

Full Changelog: v0.5.0...v0.5.1