Skip to content

Commit fb6d29b

Browse files
committed
Fix encoding problem on Windows while installation
1 parent 657f2f6 commit fb6d29b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
def readme():
4-
with open('README.md') as f:
4+
with open('README.md', encoding="utf8") as f:
55
return f.read()
66

77
setup(name='diffeqpy',

0 commit comments

Comments
 (0)