From 1846e5c7e6cc3afb17595062c4db7b5d22d793a9 Mon Sep 17 00:00:00 2001 From: Robin Dunn <> Date: Tue, 30 Nov 2021 15:54:15 -0800 Subject: [PATCH] Set the minimum python to 3.6.0 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 9a54e329..8fc9f74e 100644 --- a/wscript +++ b/wscript @@ -102,7 +102,7 @@ def configure(conf): if conf.options.python: conf.env.PYTHON = conf.options.python conf.load('python') - conf.check_python_version(minver=(2,7,0)) + conf.check_python_version(minver=(3,6,0)) if isWindows: # Search for the Python headers without doing some stuff that could # incorrectly fail on Windows. See my_check_python_headers below.