From 8ef0c22295f4cb7e41cc0c5d69e83464cabbe234 Mon Sep 17 00:00:00 2001 From: Thomas Watson Date: Mon, 10 Mar 2025 11:24:32 -0500 Subject: [PATCH] ardupilotwaf: require minimum Python 3.8 Makes the comment accurate. Python 3.8 is shipped in Ubuntu 20.04 focal by default so we can't move past until that goes EOL. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 48fbd6d7264..e7df72d25a5 100644 --- a/wscript +++ b/wscript @@ -571,7 +571,7 @@ def configure(cfg): # require python 3.8.x or later cfg.load('python') - cfg.check_python_version(minver=(3,6,9)) + cfg.check_python_version(minver=(3,8,0)) cfg.load('ap_library')