From ade58885c478a46c1299f23f17a5c40e2960b6ad Mon Sep 17 00:00:00 2001 From: v1nh1shungry Date: Fri, 28 Mar 2025 19:49:10 +0800 Subject: 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. --- runtime/lua/vim/provider/python.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 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? -- cgit