Skip to content

Commit

Permalink
Fix encoding error in Windows reported
Browse files Browse the repository at this point in the history
Close #1509
  • Loading branch information
wkentaro committed Jan 9, 2025
1 parent de29af2 commit 1135744
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
Expand Up @@ -71,7 +71,7 @@ def get_install_requires():


def get_long_description():
with open("README.md") as f:
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
try:
# when this package is being released
Expand Down

0 comments on commit 1135744

Please sign in to comment.