Skip to content

Commit bf5abdb

Browse files
authored
Specify Python exec path with minor version if available (#3508)
Fixes #3507
1 parent b542f58 commit bf5abdb

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ versions separately.
196196
- Move 3.11 CI to normal flow now that all dependencies support 3.11 (#3446)
197197
- Docker: Add new `latest_prerelease` tag automation to follow latest black alpha
198198
release on docker images (#3465)
199+
- Fixed missing python binary path in autoload script for vim (#3508)
199200

200201
### Documentation
201202

autoload/black.vim

+11-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ FLAGS = [
3434
]
3535

3636

37-
def _get_python_binary(exec_prefix):
37+
def _get_python_binary(exec_prefix, pyver):
3838
try:
3939
default = vim.eval("g:pymode_python").strip()
4040
except vim.error:
@@ -43,7 +43,15 @@ def _get_python_binary(exec_prefix):
4343
return default
4444
if sys.platform[:3] == "win":
4545
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")
4755

4856
def _get_pip(venv_path):
4957
if sys.platform[:3] == "win":
@@ -82,7 +90,7 @@ def _initialize_black_env(upgrade=False):
8290
_executable = sys.executable
8391
_base_executable = getattr(sys, "_base_executable", _executable)
8492
try:
85-
executable = str(_get_python_binary(Path(sys.exec_prefix)))
93+
executable = str(_get_python_binary(Path(sys.exec_prefix), pyver))
8694
sys.executable = executable
8795
sys._base_executable = executable
8896
print(f'Creating a virtualenv in {virtualenv_path}...')

0 commit comments

Comments
 (0)