You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on the opensuse build server I get the following error when running setup.py
[ 47s] Traceback (most recent call last):
[ 47s] File "setup.py", line 26, in <module>
[ 47s] long_description = f.read()
[ 47s] File "/usr/lib64/python3.4/encodings/ascii.py", line 26, in decode
[ 47s] return codecs.ascii_decode(input, self.errors)[0]
[ 47s] UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 3249: ordinal not in range(128)
[ 47s] error: Bad exit status from /var/tmp/rpm-tmp.UcThvc (%build)
the package already has a patch for this (not sure by whom), which fixes the problem, just wanted to report this upstream
patch:
-with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
+with open(os.path.join(os.path.dirname(__file__), 'README.rst'),encoding='utf-8') as f:
Arun
The text was updated successfully, but these errors were encountered:
Hi
on the opensuse build server I get the following error when running setup.py
the package already has a patch for this (not sure by whom), which fixes the problem, just wanted to report this upstream
patch:
Arun
The text was updated successfully, but these errors were encountered: