Skip to content

Commit efd2099

Browse files
committed
fix(//py): Fix long description section of setup.py
Thanks to @mneilly for catching this Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent e4a4574 commit efd2099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def run(self):
190190
)
191191
]
192192

193-
with open("README.md", "r") as fh:
193+
with open("README.md", "r", encoding="utf-8") as fh:
194194
long_description = fh.read()
195195

196196
setup(

0 commit comments

Comments
 (0)