From: Andrew Bartlett Date: Fri, 15 Feb 2019 03:03:35 +0000 (+1300) Subject: build: Set default minimum python version to 3.4.0 X-Git-Tag: talloc-2.2.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63d20d7822ead1626f7cb41fdbae6c9300893314;p=thirdparty%2Fsamba.git 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 --- 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)