1
0
mirror of https://github.com/e1ven/Robohash.git synced 2025-06-23 21:35:02 +00:00

Merge pull request from mrts/patch-1

Fix , UnicodeDecodeError during setup in Windows
This commit is contained in:
Colin Davis 2020-05-15 16:42:27 -04:00 committed by GitHub
commit d690273550

@ -3,7 +3,7 @@ try:
except ImportError: except ImportError:
from distutils.core import setup from distutils.core import setup
with open('README.rst') as file: with open('README.rst', encoding='utf-8') as file:
long_description = file.read() long_description = file.read()
setup( setup(