summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2019-02-15 16:04:53 +1300
committerAndrew Bartlett <abartlet@samba.org>2019-03-21 04:06:16 +0000
commita459650054b5500026b6387fb0eb2ef29ced9b5f (patch)
treed315a15de7b62acefeceec74025d6b320b017b2c /wscript
parent63d20d7822ead1626f7cb41fdbae6c9300893314 (diff)
downloadsamba-a459650054b5500026b6387fb0eb2ef29ced9b5f.tar.gz
build: Remove manual specification of minimum python version
We now used the default of 3.4 from conf.SAMBA_CHECK_PYTHON() Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 1 insertions, 2 deletions
diff --git a/wscript b/wscript
index ff6dae23330..a0a8080b448 100644
--- a/wscript
+++ b/wscript
@@ -151,8 +151,7 @@ def configure(conf):
if not (Options.options.without_ad_dc):
raise Errors.WafError('--disable-python requires --without-ad-dc')
- conf.SAMBA_CHECK_PYTHON(mandatory=not conf.env.disable_python,
- version=(2, 6, 0))
+ conf.SAMBA_CHECK_PYTHON(mandatory=not conf.env.disable_python)
conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=(not conf.env.disable_python))
if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']: