diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:15:23 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:15:23 +0000 |
commit | 8786936d6797a506bde2d7c093b5b62ff920972d (patch) | |
tree | 68395696e436e282296670b4535d9b4191a3a718 /numpy/distutils/command/scons.py | |
parent | df57d7c9cd1e6d05913093648198bd8df3c08a04 (diff) | |
download | numpy-8786936d6797a506bde2d7c093b5b62ff920972d.tar.gz |
Require 0.10.2 version of numscons - needed for installed C libraries.
Diffstat (limited to 'numpy/distutils/command/scons.py')
-rw-r--r-- | numpy/distutils/command/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index 49f3659c2..c6eb5aa48 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -363,7 +363,7 @@ class scons(old_build_ext): "this package " % str(e)) try: - minver = [0, 10, 1] + minver = [0, 10, 2] # version_info was added in 0.10.0 from numscons import version_info # Stupid me used string instead of numbers in version_info in |