From 3d8f56409b3caaae1791d3ac76b0be939a9079ed Mon Sep 17 00:00:00 2001 From: nam-cern <40789065+nam-cern@users.noreply.github.com> Date: Mon, 24 Dec 2018 20:01:25 +0100 Subject: [PATCH] Ensure numpy is at least 1.10.4 in setup.py (#2462) In the build script, numpy is specifically set at 1.10.4. We should also ensure that it is indeed the case in `setup.py`. --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index fec34fd70..41d04fb85 100644 --- a/python/setup.py +++ b/python/setup.py @@ -135,7 +135,7 @@ def find_version(*filepath): requires = [ - "numpy", + "numpy >= 1.10.4", "filelock", "funcsigs", "click",