From c0e622cb394d4fc5c6114c5d927ac85130de2448 Mon Sep 17 00:00:00 2001 From: Emiel Veersma Date: Wed, 13 Nov 2019 18:30:46 +0200 Subject: [PATCH] Update setup.py Fix windows encoding issue --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f6ac5362..1cd2e643 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ with open(os.path.join(here, 'README.md')) as _file: README = _file.read() -with open(os.path.join(here, 'CHANGELOG.md')) as _file: +with open(os.path.join(here, 'CHANGELOG.md'), encoding="utf-8") as _file: CHANGELOG = _file.read() about_text = 'Optimizely X Full Stack is A/B testing and feature management for product development teams. ' \