From 03379a5716ee4cac4092af75ed91f2ee25856720 Mon Sep 17 00:00:00 2001 From: Raf Guns Date: Thu, 9 Mar 2023 12:18:45 +0100 Subject: [PATCH] Fix installation on non-UTF-8 platforms Installation was broken on Windows, because of non_ASCII characters in the README. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1734171..9b3e30a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -long_description = open("README.rst").read() +long_description = open("README.rst", encoding="utf-8").read() setup( name="linkpred",