From d50b74a7b8a167957c98b85996b05ff53a62c290 Mon Sep 17 00:00:00 2001 From: Panayiotis Savva Date: Wed, 12 Jul 2023 14:20:14 +0300 Subject: [PATCH] Building on Windows failed due to character conversion --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f208a8d..e1a51a7 100644 --- a/setup.py +++ b/setup.py @@ -11,11 +11,11 @@ version = eval(version_file.read().split("=")[1].strip()) # Get the long description from the README file -with open(path.join(here, "README.md")) as f: +with open(path.join(here, "README.md"), encoding="utf8") as f: long_description = f.read() # Get the history from the CHANGELOG file -with open(path.join(here, "CHANGELOG.md")) as f: +with open(path.join(here, "CHANGELOG.md"), encoding="utf8") as f: history = f.read() setup(