commit 4d9a1b9852cab0574a47fb9e149b6f7164daafd3
parent 5187be81c2eb2de6793a0f9d57d0f2d95f356d22
Author: Eisuke Kawashima <e.kawaschima+github@gmail.com>
Date: Sat, 22 Mar 2025 23:20:46 +0900
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 <e-kwsm@users.noreply.github.com>
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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',
}