added support to Python 3.6+
parent
3568b29524
commit
dbd117656f
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue