Originally reported by: felixonmars (Bitbucket: felixonmars, GitHub: felixonmars)
readme_file.read() will try to use 'ascii' to decode, and thus failed. For example, set LANG=C and get this:
#!python
Traceback (most recent call last):
File "setup.py", line 93, in <module>
long_description = readme_file.read() + '\n' + changes_file.read()
File "/usr/lib/python3.3/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 7330: ordinal not in range(128)
I filed a patch for the same problem to python-Levenshtein, hope it helps:
ztane/python-Levenshtein#2
Originally reported by: felixonmars (Bitbucket: felixonmars, GitHub: felixonmars)
readme_file.read() will try to use 'ascii' to decode, and thus failed. For example, set LANG=C and get this:
I filed a patch for the same problem to python-Levenshtein, hope it helps:
ztane/python-Levenshtein#2