From 213daf320b5991d2628cf0d84823085cc68547bb Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Fri, 30 Mar 2012 20:25:11 +0200 Subject: [PATCH] update for waf 1.7 --- waflib/Configure.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/waflib/Configure.py b/waflib/Configure.py index 6519e996..0d41ec14 100644 --- a/waflib/Configure.py +++ b/waflib/Configure.py @@ -431,12 +431,11 @@ def cmd_to_list(self, cmd): return cmd @conf -def check_waf_version(self, mini='1.6.0', maxi='1.7.0'): +def check_waf_version(self, mini='1.6.99', maxi='1.8.0'): """ - check for the waf version + Raise a Configuration error if the Waf version does not strictly match the given bounds:: - Versions should be supplied as hex. 0x01000000 means 1.0.0, - 0x010408 means 1.4.8, etc. + conf.check_waf_version(mini='1.7.0', maxi='1.8.0') :type mini: number, tuple or string :param mini: Minimum required version