From 63d20d7822ead1626f7cb41fdbae6c9300893314 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 15 Feb 2019 16:03:35 +1300 Subject: [PATCH] build: Set default minimum python version to 3.4.0 This is the current minimum, but this may change before the 4.11 release. Python 2.x support is no longer available except to build using --disable-python. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- buildtools/wafsamba/samba_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index db9634015ec..598f83d68e8 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -5,7 +5,7 @@ from waflib import Build, Logs, Utils, Configure, Errors from waflib.Configure import conf @conf -def SAMBA_CHECK_PYTHON(conf, mandatory=True, version=(2,6,0)): +def SAMBA_CHECK_PYTHON(conf, mandatory=True, version=(3,4,0)): if not mandatory: version=(2,6,0) -- 2.34.1