From d6af5dd65fddeca01d160b71b4fae9c1797daf58 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Fri, 9 Oct 2020 19:43:28 +0300 Subject: [PATCH] Fix UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 2116: ordinal not in range(128) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3d571ff..5606670 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ module1 = Extension( ) -with open("README.rst") as f: +with open("README.rst", encoding="utf-8") as f: long_description = f.read()