From 651a9aa875d74192712a8647812db8b4852d0094 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 2 May 2016 19:20:01 +0200 Subject: [PATCH] ARROW-188: Add numpy as install requirement --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index ebd80de46b4..5f228ed0af2 100644 --- a/python/setup.py +++ b/python/setup.py @@ -242,7 +242,7 @@ def get_outputs(self): 'clean': clean, 'build_ext': build_ext }, - install_requires=['cython >= 0.21'], + install_requires=['cython >= 0.21', 'numpy >= 1.9'], description=DESC, license='Apache License, Version 2.0', maintainer="Apache Arrow Developers",