From 993f6be06d4611916f328769df8304705b1317f4 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Thu, 10 Oct 2019 20:09:45 +0200 Subject: [PATCH] Fix for Python 2.7 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c5cf3a3..8764ea8 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ +import io import os from setuptools import setup, find_packages VERSION = None -with open( +with io.open( os.path.join(os.path.dirname(__file__), 'biopandas/__init__.py'), encoding='utf-8' ) as f: