From 2900fc745a9d8938c37231e993bcb393e0f54183 Mon Sep 17 00:00:00 2001 From: Leonid R Date: Thu, 9 Jan 2020 22:36:40 +0300 Subject: [PATCH] Don't assume that system encoding is set to UTF-8 during install But really though, it should be. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d92b29c..b80c862 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname)).read() + return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read() setuptools.setup(