Skip to content

Commit

Permalink
Fix setup.py for readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Apr 18, 2016
1 parent 63805e9 commit 43fa011
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -8,11 +8,11 @@
from distutils.core import setup, find_packages


with open('README.rst') as readme_file:
readme = readme_file.read()
with open('README.rst', 'rb') as readme_file:
readme = readme_file.read().decode('utf8')

with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('HISTORY.rst', 'rb') as history_file:
history = history_file.read().decode('utf8')

requirements = [
"marshmallow>=2.6.0",
Expand Down

0 comments on commit 43fa011

Please sign in to comment.