]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
build: Raise minimum python version to 3.5.0 for Samba 4.12
authorAndrew Bartlett <abartlet@samba.org>
Mon, 26 Aug 2019 02:36:49 +0000 (14:36 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 2 Sep 2019 01:14:05 +0000 (01:14 +0000)
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Sep  2 01:14:05 UTC 2019 on sn-devel-184

WHATSNEW.txt
buildtools/wafsamba/samba_python.py

index c3b99dbee80705e32a660c8532c91b59f5b7e616..2a774ace6d70a368c317eafa8c340d6fc8c9adc6 100644 (file)
@@ -16,6 +16,16 @@ UPGRADING
 NEW FEATURES/CHANGES
 ====================
 
+Python 3.5 Required
+-------------------
+
+Samba's minimum runtime requirement for python was raised to Python
+3.4 with samba 4.11.  Samba 4.12 raises this minimum version to Python
+3.5 both to access new features and because this is the oldest version
+we test with in our CI infrastructure.
+
+(Build time support for the file server with Python 2.6 has not
+changed)
 
 GnuTLS 3.4.7 required
 ---------------------
index 4476d3352484091bdf5d3877dca81482254f7061..cb726cf0bcce5a005d4f39d6bc178af145b2c1b2 100644 (file)
@@ -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,4,0)):
+def SAMBA_CHECK_PYTHON(conf, version=(3,5,0)):
 
     if conf.env.disable_python:
         version=(2,6,0)