From: Andrew Bartlett Date: Thu, 9 Sep 2021 08:43:11 +0000 (+1200) Subject: build: Make Python 3.6 the minimum to build now oss-fuzz is upgraded X-Git-Tag: ldb-2.5.0~689 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5950fc66e017e5712a5bafbce16c92484eee4c16;p=thirdparty%2Fsamba.git build: Make Python 3.6 the minimum to build now oss-fuzz is upgraded The exception to allow building, but not operating, with Python 3.5 was only because oss-fuzz provided only Python 3.5 on Ubuntu 16.04. Ubuntu 20.04 is now the base image provided, so this exception can be removed. Signed-off-by: Andrew Bartlett Reviewed-by: Uri Simchoni --- diff --git a/buildtools/wafsamba/samba_python.py b/buildtools/wafsamba/samba_python.py index 002357bb556..12a94c8079d 100644 --- a/buildtools/wafsamba/samba_python.py +++ b/buildtools/wafsamba/samba_python.py @@ -7,9 +7,6 @@ from waflib.Configure import conf @conf def SAMBA_CHECK_PYTHON(conf, version=(3,6,0)): - if conf.env.enable_fuzzing: - version=(3,5,0) - # enable tool to build python extensions if conf.env.HAVE_PYTHON_H: conf.check_python_version(version)