-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnicodeDecodeError error when building packages with python 3 #56
Comments
Original comment by arfrever (Bitbucket: arfrever, GitHub: arfrever): The traceback shows that problem is caused by open(...).read() call in setup.py of python-dateutil-2.1, which reads content of a file containing bytes not decodable using encoding corresponding to current locale. This is a bug in python-dateutil-2.1. |
Original comment by ajung (Bitbucket: ajung, GitHub: ajung): This error can not be invalid...it happens also on three different Linux boxes during the installation under Python 3.3....we don't not have to adjust the locale here. The installation is broken for whatever reason and it must be fixed in python-datetutil. |
Original comment by ajung (Bitbucket: ajung, GitHub: ajung):
|
Script files to be copied in the develop command should be open in binary mode. Fixes pypa#210.
Originally reported by: iElectric (Bitbucket: iElectric, GitHub: Unknown)
The text was updated successfully, but these errors were encountered: