From bfc6e6c2821f7bb94703de231b98a8aef56e998a Mon Sep 17 00:00:00 2001 From: Max Boll Date: Sun, 25 Oct 2020 12:00:28 +0100 Subject: [PATCH] encoding bug fixed at setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 00041d2..1296a9b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def dependencies(imported_file): return file.read().splitlines() -with open("README.md") as file: +with open("README.md", encoding="utf-8") as file: num_installed = True try: import numpy