From 55723701d2674b1557745fef14cfd3933b84711a Mon Sep 17 00:00:00 2001 From: Ernesto Casablanca <65033249+TendTo@users.noreply.github.com> Date: Thu, 23 Jan 2025 11:21:02 +0000 Subject: [PATCH] fix: correct open encoding Using the wrong encoding creates issues on Windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 59b1e22..af591da 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup def readme(): - with open('README.md', encoding="utf8") as f: + with open('README.md', encoding="utf-8") as f: return f.read() setup(name='diffeqpy',