From efd2099bbc04b2c9cc4ec99a10604fa308814273 Mon Sep 17 00:00:00 2001 From: Naren Dasan Date: Thu, 22 Oct 2020 12:39:45 -0700 Subject: [PATCH] fix(//py): Fix long description section of setup.py Thanks to @mneilly for catching this Signed-off-by: Naren Dasan Signed-off-by: Naren Dasan --- py/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/setup.py b/py/setup.py index 53f85dada1..8344c0aa4f 100644 --- a/py/setup.py +++ b/py/setup.py @@ -190,7 +190,7 @@ def run(self): ) ] -with open("README.md", "r") as fh: +with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup(