Skip to content

Commit 5572370

Browse files
authored
fix: correct open encoding
Using the wrong encoding creates issues on Windows
1 parent 5c41b44 commit 5572370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
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', encoding="utf8") as f:
4+
with open('README.md', encoding="utf-8") as f:
55
return f.read()
66

77
setup(name='diffeqpy',

0 commit comments

Comments
 (0)