Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d00fe70

Browse files
committed
Require numscons 0.11 or above.
1 parent 3ecba7e commit d00fe70

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

numpy/distutils/command/scons.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def select_packages(sconspkg, pkglist):
258258
raise ValueError(msg)
259259
return common
260260

261-
def check_numscons(minver=(0, 10, 2)):
261+
def check_numscons(minver):
262262
"""Check that we can use numscons.
263263
264264
minver is a 3 integers tuple which defines the min version."""
@@ -437,7 +437,7 @@ def run(self):
437437
# nothing to do, just leave it here.
438438
return
439439

440-
check_numscons(minver=(0, 10, 2))
440+
check_numscons(minver=(0, 11, 0))
441441

442442
# XXX: when a scons script is missing, scons only prints warnings, and
443443
# does not return a failure (status is 0). We have to detect this from

0 commit comments

Comments
 (0)