From f277200f672b07af3ac9ea70cf169b6eca41bd74 Mon Sep 17 00:00:00 2001 From: Hideo Hattori Date: Wed, 27 Jun 2018 18:56:43 +0900 Subject: [PATCH] fix install error on not locale environment (docker, etc...) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d06dacd..41f3306 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup version = open('VERSION').read().strip() -long_description = open('README.md').read() +long_description = open('README.md', encoding='utf-8').read() setup( name='pytest-codestyle',