From 9156ab68d0cb251bd47ab832912bfc59156653fc Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 12 Sep 2014 10:42:23 -0500 Subject: [PATCH] Explicitly open READMEFILE as utf-8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fd089a5a..0c182e98 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ install_requires = [ # 'Pillow', ] + py2_only_install_requires -with open(READMEFILE) as fobj: +with open(READMEFILE, encoding="utf-8") as fobj: long_description = fobj.read() try: -- 2.25.1