Skip to content

Commit

Permalink
Update setup.py (microsoft#214)
Browse files Browse the repository at this point in the history
ignore decoding errors in reading README.md
  • Loading branch information
liqul authored Feb 26, 2024
1 parent aeeef01 commit 80784cd
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 @@ -26,7 +26,7 @@ def revert():
revert_version_file = update_version_file(version_str)

# Configurations
with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf-8", errors="ignore") as fh:
long_description = fh.read()


Expand Down

0 comments on commit 80784cd

Please sign in to comment.