Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecba7e commit d00fe70Copy full SHA for d00fe70
1 file changed
numpy/distutils/command/scons.py
@@ -258,7 +258,7 @@ def select_packages(sconspkg, pkglist):
258
raise ValueError(msg)
259
return common
260
261
-def check_numscons(minver=(0, 10, 2)):
+def check_numscons(minver):
262
"""Check that we can use numscons.
263
264
minver is a 3 integers tuple which defines the min version."""
@@ -437,7 +437,7 @@ def run(self):
437
# nothing to do, just leave it here.
438
return
439
440
- check_numscons(minver=(0, 10, 2))
+ check_numscons(minver=(0, 11, 0))
441
442
# XXX: when a scons script is missing, scons only prints warnings, and
443
# does not return a failure (status is 0). We have to detect this from
0 commit comments