From d00fe700a1a0c9a0948a268a0a2145d54b673c0b Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Wed, 9 Sep 2009 00:47:03 +0000 Subject: Require numscons 0.11 or above. --- numpy/distutils/command/scons.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/distutils/command/scons.py') diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index f02f699a7..f7fe89377 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -258,7 +258,7 @@ def select_packages(sconspkg, pkglist): raise ValueError(msg) return common -def check_numscons(minver=(0, 10, 2)): +def check_numscons(minver): """Check that we can use numscons. minver is a 3 integers tuple which defines the min version.""" @@ -437,7 +437,7 @@ class scons(old_build_ext): # nothing to do, just leave it here. return - check_numscons(minver=(0, 10, 2)) + check_numscons(minver=(0, 11, 0)) # XXX: when a scons script is missing, scons only prints warnings, and # does not return a failure (status is 0). We have to detect this from -- cgit v1.2.1