summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2019-02-15 16:03:35 +1300
committerAndrew Bartlett <abartlet@samba.org>2019-03-21 04:06:15 +0000
commit63d20d7822ead1626f7cb41fdbae6c9300893314 (patch)
tree0e46c79f880413773114d9e103bc31883deed213 /buildtools
parent760b176d86a51048b01f72a5e29718c5c9c558ff (diff)
downloadsamba-63d20d7822ead1626f7cb41fdbae6c9300893314.tar.gz
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 <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_python.py2
1 files changed, 1 insertions, 1 deletions
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)