added support to Python 3.6+

master
Luca Quartesan 2022-01-06 18:07:17 +01:00
parent 3568b29524
commit dbd117656f
1 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,11 @@ def find_boost_python(version):
return None return None
def detect_python(): 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 = {} pyenv = {}
for version in pyver: for version in pyver: