From 1b25d85cc1c0b4632430347093d6fd6322597620 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 12 Nov 2012 16:00:35 +0000 Subject: [PATCH] add numpy install_requires --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 900dac0..7dc9556 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def _unavailable(self, exc): # required dependencies install_requires=[ - # 'numpy >= 1.0.3', # matrices, linear algebra, etc + 'numpy >= 1.0.3, <=1.6.2', # matrices, linear algebra, etc 'pydot', # to output network as dot file 'pyparsing >= 1.4.7', # required by pydot but not specified in its setup ],