@@ -34,7 +34,7 @@ FLAGS = [
34
34
]
35
35
36
36
37
- def _get_python_binary (exec_prefix):
37
+ def _get_python_binary (exec_prefix, pyver ):
38
38
try :
39
39
default = vim .eval (" g:pymode_python" ).strip ()
40
40
except vim .error :
@@ -43,7 +43,15 @@ def _get_python_binary(exec_prefix):
43
43
return default
44
44
if sys.platform[:3 ] == " win" :
45
45
return exec_prefix / ' python.exe'
46
- return exec_prefix / 'bin' / ' python3'
46
+ bin_path = exec_prefix / " bin"
47
+ exec_path = (bin_path / f " python{pyver[0]}.{pyver[1]}" ).resolve ()
48
+ if exec_path.exists ():
49
+ return exec_path
50
+ # It is possible that some environments may only have python3
51
+ exec_path = (bin_path / f " python3" ).resolve ()
52
+ if exec_path.exists ():
53
+ return exec_path
54
+ raise ValueError (" python executable not found" )
47
55
48
56
def _get_pip (venv_path):
49
57
if sys.platform[:3 ] == " win" :
@@ -82,7 +90,7 @@ def _initialize_black_env(upgrade=False):
82
90
_executable = sys.executable
83
91
_base_executable = getattr (sys, " _base_executable" , _executable)
84
92
try :
85
- executable = str (_get_python_binary (Path (sys.exec_prefix)))
93
+ executable = str (_get_python_binary (Path (sys.exec_prefix), pyver ))
86
94
sys.executable = executable
87
95
sys._base_executable = executable
88
96
print (f ' Creating a virtualenv in {virtualenv_path}...' )
0 commit comments