Seems that the UTF-8 name Otis Gospodnetić causes a problem for the Unicode Decoder as it doesn't know what to do with the c with the acute accent.
Possible fix:
https://github.com/search5/solrpy/blob/master/setup.py#L10
to:
with open('README.md', "r", encoding="utf-8", errors="ignore") as f:
Seems that the UTF-8 name Otis Gospodnetić causes a problem for the Unicode Decoder as it doesn't know what to do with the c with the acute accent.
Possible fix:
https://github.com/search5/solrpy/blob/master/setup.py#L10
to:
with open('README.md', "r", encoding="utf-8", errors="ignore") as f: