From a57c27c9bcc2829cbdceadf535f6947c1edd39e7 Mon Sep 17 00:00:00 2001 From: Geoffrey Spear Date: Tue, 3 May 2016 10:22:24 -0400 Subject: [PATCH] python_2_unicode_compatible is only in six 1.9+ --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9ab185..265f1cc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -install_requires = ['six'] +install_requires = ['six>=1.9.0'] try: import xml.etree except ImportError: