From 5fff1eaa8701c670990e93039e30a427ba0e0690 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Sat, 17 Jun 2017 09:15:05 +0200 Subject: [PATCH] ARROW-1124: Increase numpy dependency to >=1.10.x While we could still build with NumPy>=1.9 for Python 2, Python 3 builds require >= 1.10 due to a bug in the C-headers. Change-Id: I0f9e0ad72e4ce4b1c6b44883d5781347d33f7e5b --- python/requirements.txt | 2 +- python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/requirements.txt b/python/requirements.txt index f42c90c5c9b..103f490588a 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,3 +1,3 @@ pytest -numpy>=1.7.0 +numpy>=1.10.0 six diff --git a/python/setup.py b/python/setup.py index e10b4b84b01..eddf88ab16b 100644 --- a/python/setup.py +++ b/python/setup.py @@ -366,7 +366,7 @@ def has_ext_modules(foo): }, use_scm_version={"root": "..", "relative_to": __file__}, setup_requires=['setuptools_scm', 'cython >= 0.23'], - install_requires=['numpy >= 1.9', 'six >= 1.0.0'], + install_requires=['numpy >= 1.10', 'six >= 1.0.0'], tests_require=['pytest'], description="Python library for Apache Arrow", long_description=long_description,