From 423a9ec55901aed639848b4b97d2cf6e8f920a86 Mon Sep 17 00:00:00 2001 From: Douglas Lassance Date: Thu, 15 Oct 2020 18:57:34 -0700 Subject: [PATCH] Fix README.md parsing in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index acca1ff..26f8c5b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ import airstorm # noqa: E402 pylint: disable=C0413 # Get the long description from the README file. -with open(os.path.join(dirname, "README.md")) as fle: +with open(os.path.join(dirname, "README.md"), encoding='utf-8') as fle: long_description = fle.read() setup(