From 3fcf5213e67ebfa63601f18f01e6629bc9a56d65 Mon Sep 17 00:00:00 2001 From: Kentaro Wada Date: Tue, 19 Dec 2023 21:19:20 +0900 Subject: [PATCH] Set encoding to utf8 to fix errors on Windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 695e907a5..fe2eb5600 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def get_install_requires(): def get_long_description(): - with open("README.md") as f: + with open("README.md", encoding="utf8") as f: long_description = f.read() try: # when this package is being released