Skip to content

Commit

Permalink
Merge pull request #42 from mrts/patch-1
Browse files Browse the repository at this point in the history
Fix #41, UnicodeDecodeError during setup in Windows
  • Loading branch information
e1ven committed May 15, 2020
2 parents 03ade66 + 904934d commit d690273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
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(
Expand Down

0 comments on commit d690273

Please sign in to comment.