diff -r 59b1bdf85b1a -r 456c37433c43 setup.py --- a/setup.py Thu Apr 04 15:40:48 2019 +0200 +++ b/setup.py Fri Apr 05 18:36:43 2019 -0400 @@ -583,9 +583,9 @@ if err or returncode != 0: raise DistutilsExecError(err) - with open(self._indexfilename, 'w') as f: - f.write('# this file is autogenerated by setup.py\n') - f.write('docs = ') + with open(self._indexfilename, 'wb') as f: + f.write(b'# this file is autogenerated by setup.py\n') + f.write(b'docs = ') f.write(out) class buildhgexe(build_ext):