From 0d5138d5cb18da8b9be3a8fe33a492b49663cf41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=20S=C3=B5mermaa?= Date: Fri, 15 May 2020 23:40:59 +0300 Subject: [PATCH] Fix #41, UnicodeDecodeError during setup in Windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 13c4770..81054cd 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ try: except ImportError: from distutils.core import setup -with open('README.rst') as file: +with open('README.rst', encoding='utf-8') as file: long_description = file.read() setup(