diff options
author | Eisuke Kawashima <e.kawaschima+github@gmail.com> | 2025-03-22 23:20:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 07:20:46 -0700 |
commit | 4d9a1b9852cab0574a47fb9e149b6f7164daafd3 (patch) | |
tree | d61af422f636dc8258dd6830973d1bc7c8a6ce70 /runtime/lua/vim/provider/python.lua | |
parent | 5187be81c2eb2de6793a0f9d57d0f2d95f356d22 (diff) | |
download | rneovim-4d9a1b9852cab0574a47fb9e149b6f7164daafd3.tar.gz rneovim-4d9a1b9852cab0574a47fb9e149b6f7164daafd3.tar.bz2 rneovim-4d9a1b9852cab0574a47fb9e149b6f7164daafd3.zip |
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 (limited to 'runtime/lua/vim/provider/python.lua')
-rw-r--r-- | runtime/lua/vim/provider/python.lua | 3 |
1 files changed, 1 insertions, 2 deletions
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', } |