aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua
diff options
context:
space:
mode:
authorv1nh1shungry <v1nh1shungry@outlook.com>2025-03-28 19:49:10 +0800
committerGitHub <noreply@github.com>2025-03-28 04:49:10 -0700
commitade58885c478a46c1299f23f17a5c40e2960b6ad (patch)
treece761d54eb230077cd1cb9ab8f4f542a00637602 /runtime/lua
parent75cbd9a8aeb2fb0f7efb5fca6a2d42097810a95e (diff)
downloadrneovim-ade58885c478a46c1299f23f17a5c40e2960b6ad.tar.gz
rneovim-ade58885c478a46c1299f23f17a5c40e2960b6ad.tar.bz2
rneovim-ade58885c478a46c1299f23f17a5c40e2960b6ad.zip
fix(provider)!: drop Python 3.7, 3.8 support #33088
Problem: #33022 didn't update `min_version` to 3.9, therefore Python 3.7 and 3.8 are still available. Solution: Update `min_version` to 3.9.
Diffstat (limited to 'runtime/lua')
-rw-r--r--runtime/lua/vim/provider/python.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/provider/python.lua b/runtime/lua/vim/provider/python.lua
index 48f08302f9..a772b36973 100644
--- a/runtime/lua/vim/provider/python.lua
+++ b/runtime/lua/vim/provider/python.lua
@@ -1,5 +1,5 @@
local M = {}
-local min_version = '3.7'
+local min_version = '3.9'
local s_err ---@type string?
local s_host ---@type string?