From dbd117656f75a2a7de1a3446321684fe22b593ab Mon Sep 17 00:00:00 2001 From: Luca Quartesan Date: Thu, 6 Jan 2022 18:07:17 +0100 Subject: [PATCH] added support to Python 3.6+ --- data/scons/detect_python.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data/scons/detect_python.py b/data/scons/detect_python.py index 9b1f71cc..41a8233c 100644 --- a/data/scons/detect_python.py +++ b/data/scons/detect_python.py @@ -62,7 +62,11 @@ def find_boost_python(version): return None def detect_python(): - pyver = ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', '3.5', '3.6', '3.7'] + pyver = [ + '2.6', '2.7', + '3.0', '3.1', '3.2', '3.3', + '3.4', '3.5', '3.6','3.7', + '3.8', '3.9', '3.10'] pyenv = {} for version in pyver: