Skip to content

Commit

Permalink
Merge pull request #23 from bamarni/patch-1
Browse files Browse the repository at this point in the history
Pass utf-8 encoding when opening the README
  • Loading branch information
Yoav Ram authored Jun 3, 2018
2 parents 860be86 + 55f4441 commit d8a9b02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from io import open
from setuptools import setup

import versioneer

with open('README.md') as f:
with open('README.md', encoding="utf8") as f:
readme = f.read()

setup(
Expand Down

0 comments on commit d8a9b02

Please sign in to comment.