Skip to content

Commit

Permalink
Merge pull request #155 from PositroniumJS/154-fix-installation-on-wi…
Browse files Browse the repository at this point in the history
…ndows

Fix encoding problem on Windows during installation
  • Loading branch information
ChrisRackauckas authored Dec 20, 2024
2 parents 657f2f6 + fb6d29b commit f8a9590
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 f8a9590

Please sign in to comment.