summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2020-03-04 13:51:23 +1300
committerAndrew Bartlett <abartlet@samba.org>2020-03-09 22:03:26 +0000
commit609c9903473b139fdf1b2ed02b9c93b648eeea8c (patch)
treee101f990dc4d717c8233f38178290c42c64959f5 /buildtools
parente9ce0f13e695f1d7e719923628255ea786a90c20 (diff)
downloadsamba-609c9903473b139fdf1b2ed02b9c93b648eeea8c.tar.gz
Require Python 3.6 for Samba 4.13
This allows Samba to use formatted string literals, which are quite handy. REF: https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep498 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
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 0b96a81ff41..994190fdeb2 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, version=(3,5,0)):
+def SAMBA_CHECK_PYTHON(conf, version=(3,6,0)):
if conf.env.disable_python:
version=(2,6,0)