diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-09 00:47:03 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-09 00:47:03 +0000 |
commit | d00fe700a1a0c9a0948a268a0a2145d54b673c0b (patch) | |
tree | 94cda1acdc3c8dd634d741bfe70baa5c0b316ca4 /numpy/distutils/command/scons.py | |
parent | 3ecba7e560f3ec458335c01fff509a8942e5391c (diff) | |
download | numpy-d00fe700a1a0c9a0948a268a0a2145d54b673c0b.tar.gz |
Require numscons 0.11 or above.
Diffstat (limited to 'numpy/distutils/command/scons.py')
-rw-r--r-- | numpy/distutils/command/scons.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |