-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Special characters in the changelog break installation on Python 3.X #201
Comments
Maybe it's just on machines where the default locale is ascii. |
default locale is ascii for any EN-US ubuntu install afaik :( |
Since I wasted 45 minutes on this, may as well record what I found for posterity, in case anyone else has a better solution. This only happens on systems where the locale (and thus Python's default encoding) are ASCII. (To reproduce on Linux, The initial error is on reading from the file containing non-ASCII ( But then you get an encoding error on the output side. The usual way to fix this would be to explicitly encode the string to bytes in the desired encoding before output, e.g. Attempts to change the default encoding of So I can't see any other fix here than to mangle the spelling of people's names in our changelog. Which sucks. "Fixed" in 25ab511 |
See http://hudson.testrun.org/view/pytest/job/tox/TOXENV=py31,label=linux/412/console
This is probably related to an
ö
in the changelog.The text was updated successfully, but these errors were encountered: