From 4d9a1b9852cab0574a47fb9e149b6f7164daafd3 Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Sat, 22 Mar 2025 23:20:46 +0900 Subject: feat(provider/python)!: add python 3.13, drop 3.7 and 3.8 (EOL) #33022 https://devguide.python.org/versions/ Co-authored-by: Eisuke Kawashima --- runtime/lua/vim/provider/python.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'runtime/lua/vim/provider/python.lua') diff --git a/runtime/lua/vim/provider/python.lua b/runtime/lua/vim/provider/python.lua index 8322131238..48f08302f9 100644 --- a/runtime/lua/vim/provider/python.lua +++ b/runtime/lua/vim/provider/python.lua @@ -5,12 +5,11 @@ local s_host ---@type string? local python_candidates = { 'python3', + 'python3.13', 'python3.12', 'python3.11', 'python3.10', 'python3.9', - 'python3.8', - 'python3.7', 'python', } -- cgit