From 0c32c7fe8338d2689d7afafa5164f03fa440bd47 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 12 Sep 2014 12:29:12 -0500 Subject: [PATCH] py2.7 compatibility with open(..., encoding="utf-8"), use io.open This commit sponsored by Peter Baumgarten. Thank you! --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 0c182e98..0d4af5ab 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ from __future__ import print_function from setuptools import setup, find_packages +from io import open import os import re -- 2.25.1