Add explicit encoding to parsing README.rst

这个提交包含在:
Craig Warren
2024-03-19 11:26:35 +00:00
父节点 d75ea4dc45
当前提交 af10677efb

查看文件

@@ -253,7 +253,7 @@ else:
)
# Parse long_description from README.rst file.
with open("README.rst", "r") as fd:
with open("README.rst", "r", encoding="utf-8") as fd:
long_description = fd.read()
setup(