From 51aa64488ddd7599c9e1052846e25cdb10570080 Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Sun, 22 Mar 2026 22:20:04 +0900 Subject: [PATCH] fix(provider): support python3.14 #38419 Co-authored-by: Eisuke Kawashima --- runtime/lua/vim/provider/python.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/lua/vim/provider/python.lua b/runtime/lua/vim/provider/python.lua index afd0895c7f..9950a731f1 100644 --- a/runtime/lua/vim/provider/python.lua +++ b/runtime/lua/vim/provider/python.lua @@ -5,6 +5,7 @@ local s_host ---@type string? local python_candidates = { 'python3', + 'python3.14', 'python3.13', 'python3.12', 'python3.11',