From fb6d29b9b03aa36883179e669e75c2f1d6646d6e Mon Sep 17 00:00:00 2001 From: PositroniumJS <150566116+PositroniumJS@users.noreply.github.com> Date: Fri, 20 Dec 2024 18:20:30 +0100 Subject: [PATCH] Fix encoding problem on Windows while installation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 86c0a88..ddaa662 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup def readme(): - with open('README.md') as f: + with open('README.md', encoding="utf8") as f: return f.read() setup(name='diffeqpy',