We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2610595 commit 5a62206Copy full SHA for 5a62206
lua/mason-core/installer/managers/pypi.lua
@@ -78,13 +78,12 @@ local function get_versioned_candidates(supported_python_versions)
78
end
79
return Optional.of(executable)
80
end, {
81
+ { semver.new "3.14.0", "python3.14" },
82
+ { semver.new "3.13.0", "python3.13" },
83
{ semver.new "3.12.0", "python3.12" },
84
{ semver.new "3.11.0", "python3.11" },
85
{ semver.new "3.10.0", "python3.10" },
- { semver.new "3.9.0", "python3.9" },
- { semver.new "3.8.0", "python3.8" },
86
- { semver.new "3.7.0", "python3.7" },
87
- { semver.new "3.6.0", "python3.6" },
+ -- the rest are EOL
88
})
89
90
0 commit comments