brainwater / simpleubjson

Automatically exported from code.google.com/p/simpleubjson
BSD 2-Clause "Simplified" License
0 stars 1 forks source link

Installation fails under Python 2.6.1 #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Using Python 2.6.1, I attempted to `pip install simpleubjson`.

I hit an exception at line 42 of setup.py, where README.rst is read and 
decoded. No encoding is given as an argument to the decode() method of the 
string, so "ascii" is assumed by Python 2.6.1.

Switching to ".decode('utf8')" seems to fix the problem.

Original issue reported on code.google.com by m...@codeforamerica.org on 13 Jul 2013 at 9:17

GoogleCodeExporter commented 9 years ago
Fixed in r6d4fe13aa13b

Thank you for report!

Original comment by kxepal on 13 Jul 2013 at 11:07