Skip to content

Commit 759de86

Browse files
Merge pull request #99 from milesgranger/setup-fix
Update setup.py with encoding.
2 parents 609ba2e + 3b31b15 commit 759de86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import os
33

44
here = os.path.abspath(os.path.dirname(__file__))
5-
README = open(os.path.join(here, 'README.rst')).read()
6-
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
5+
README = open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
6+
NEWS = open(os.path.join(here, 'NEWS.txt'), encoding='utf-8').read()
77

88

99
version = '0.3.9'

0 commit comments

Comments
 (0)