From 97f0d052c06c7a80079f3e969bc6e09700bbcd4b Mon Sep 17 00:00:00 2001 From: kirill-shershen Date: Sat, 12 Nov 2022 12:32:21 +0300 Subject: [PATCH] fixed bug in windows build with default charset --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 82c8e8ff..d9b47040 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ defined_macros["CYTHON_CLINE_IN_TRACEBACK"] = 0 # Getting description: -with open("README.rst") as readme_file: +with open("README.rst", encoding="utf-8") as readme_file: description = readme_file.read() # Getting requirements: