Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/python3_package' into python3_pa…
Browse files Browse the repository at this point in the history
…ckage
  • Loading branch information
schaarj committed Mar 15, 2018
2 parents 29ab443 + ffd8d31 commit 69196df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os
from setuptools import setup

import codecs

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()

requirements = [
"numpy",
Expand Down

0 comments on commit 69196df

Please sign in to comment.