From ea4956a2e26b17b41b487b8ff92cb3dbbcf9cb3a Mon Sep 17 00:00:00 2001 From: Nikita Ofitserov <himikof@gmail.com> Date: Thu, 22 Oct 2015 21:16:17 +0300 Subject: [PATCH] Require at least six 1.8.0 (for six.moves.intern) Since commit d855850c, function `six.moves.intern` is used in pytools, but this function appeared only in six 1.8.0. This commit prevents an error while importing pytools with an older six installed. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 623ddae..9283edd 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ setup(name="pytools", install_requires=[ "decorator>=3.2.0", "appdirs>=1.4.0", - "six", + "six>=1.8.0", ], author="Andreas Kloeckner", -- GitLab