diff options
author | David Cournapeau <cournape@gmail.com> | 2008-08-10 21:07:36 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-08-10 21:07:36 +0000 |
commit | 363d209305e7382c4ae36f71110b00c6fd66d8bc (patch) | |
tree | cdd1727fa0790de45613a284e96698dea20b6b0d | |
parent | 7bb36be47c5a2e1b1d51a556eec99bf741c2ff75 (diff) | |
download | numpy-363d209305e7382c4ae36f71110b00c6fd66d8bc.tar.gz |
Depends on numscons >= 0.9.1.
-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 d9f4d8e64..60c840b13 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -356,7 +356,7 @@ class scons(old_build_ext): "this package " % str(e)) try: - minver = "0.9.0" + minver = "0.9.1" from numscons import get_version if get_version() < minver: raise ValueError() |