Skip to content

Commit

Permalink
Fix encoding problem on Windows while installation
Browse files Browse the repository at this point in the history
  • Loading branch information
PositroniumJS committed Dec 20, 2024
1 parent 657f2f6 commit fb6d29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

def readme():
with open('README.md') as f:
with open('README.md', encoding="utf8") as f:
return f.read()

setup(name='diffeqpy',
Expand Down

0 comments on commit fb6d29b

Please sign in to comment.