From 0fc7879df8ea690fd1234fbab0935add88ac512c Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Tue, 17 Nov 2020 12:01:17 +0100
Subject: [PATCH] Specify encoding for README file
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index b386f5829..22a77bcbc 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
)
)
-with open(os.path.join("README.md")) as fid:
+with open(os.path.join("README.md"), encoding="utf-8") as fid:
README = fid.read()
setuptools.setup(