From 5e21452c1fce3c97d411d2bc4515078a1aae19bb Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.r.kempf@gmail.com> Date: Thu, 27 Aug 2015 14:45:09 +0200 Subject: [PATCH] Explicitly state the required verison of six. six.intern was only introduced in 1.8.0. This patch makes it possible to work in a virtualenv with --system-site-packages despite an ancient six (as provided by Ubuntu 14.04 for whatever reasons). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1f1ea6876..c8c660666 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup(name="loo.py", "pymbolic>=2015.2.1", "cgen>=2013.1.2", "islpy>=2014.2", - "six", + "six>=1.8.0", ], scripts=["bin/loopy"], -- GitLab