From 1bffc69a55e293d36cebf6345b3f3af51daa8402 Mon Sep 17 00:00:00 2001 From: Peter Hoffmann Date: Thu, 27 Oct 2016 09:45:13 +0200 Subject: [PATCH] Add six as a requirement fixes https://issues.apache.org/jira/browse/ARROW-349 --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 99049777514..cdfdc243e25 100644 --- a/python/setup.py +++ b/python/setup.py @@ -271,7 +271,7 @@ def get_outputs(self): 'clean': clean, 'build_ext': build_ext }, - install_requires=['cython >= 0.23', 'numpy >= 1.9'], + install_requires=['cython >= 0.23', 'numpy >= 1.9', 'six >= 1.0.0'], description=DESC, license='Apache License, Version 2.0', maintainer="Apache Arrow Developers",