From dff9920478ca1d27e09ea695bfd5b3604febc4ce Mon Sep 17 00:00:00 2001 From: codingFeng101 <3524962421@qq.com> Date: Mon, 22 Jun 2026 06:06:20 +0800 Subject: [PATCH] Read README as UTF-8 in setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d433b8e..36019db 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ readmePath = pjoin(dirname(__file__), 'README.md') -with open(readmePath) as f: +with open(readmePath, encoding='utf-8') as f: readmeContent = f.read()