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.
This commit is contained in:
Thomas Watson
2025-06-19 21:27:25 +10:00
committed by Peter Barker
parent 974f54eef5
commit 8ef0c22295
+1 -1
View File
@@ -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')