From 33c07a094e7bf257dc34f230c4e9667ea0da0275 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Dec 2023 10:16:15 +0100 Subject: [PATCH] setup.py: Specify UTF-8 encoding for long_description/README.md. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0a0f7a601..696177dc5 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup from setuptools import find_packages -with open("README.md", "r") as fp: +with open("README.md", "r", encoding="utf-8") as fp: long_description = fp.read()