Skip to content

Commit f8a9590

Browse files
Merge pull request #155 from PositroniumJS/154-fix-installation-on-windows
Fix encoding problem on Windows during installation
2 parents 657f2f6 + fb6d29b commit f8a9590

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)