We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8730ec7 commit 54e4e79Copy full SHA for 54e4e79
1 file changed
lua/CopilotChat/health.lua
@@ -38,8 +38,8 @@ function M.check()
38
end
39
40
local major, minor = string.match(python_version, 'Python (%d+)%.(%d+)')
41
- if not (major and minor and tonumber(major) >= 3 and tonumber(minor) >= 7) then
42
- warn('Python version 3.7 or higher is required')
+ if not (major and minor and tonumber(major) >= 3 and tonumber(minor) >= 10) then
+ warn('Python version 3.10 or higher is required')
43
else
44
ok('Python version ' .. major .. '.' .. minor .. ' is supported')
45
0 commit comments