Skip to content

HISTORY.rst causes problem with pip install on python 3.6 #49

@da4089

Description

@da4089

Using a 3.6 virtualenv, pip install breaks when installing complexity-0.9.1.

The error occurs when reading the HISTORY.rst file, with the first character of the tree diagram in the release notes for 0.4: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 2378: ordinal not in range(128)

This seems to be because the content of HISTORY.rst is UTF8, but a non-binary mode open is expecting ASCII, and so the codec errors out.

I was able to "fix" this by hacking setup.py to read HISTORY.rst in binary mode, and decode the resulting buffer as UTF8. I think that'd work for 2.7 also, although I didn't try it.

See also issue #4, which appears to report a related problem with Python 2.7.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions