Skip to content

Commit 5a62206

Browse files
chore: update supported python versions
1 parent 2610595 commit 5a62206

File tree

1 file changed

+3
-4
lines changed
  • lua/mason-core/installer/managers

1 file changed

+3
-4
lines changed

lua/mason-core/installer/managers/pypi.lua

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,12 @@ local function get_versioned_candidates(supported_python_versions)
7878
end
7979
return Optional.of(executable)
8080
end, {
81+
{ semver.new "3.14.0", "python3.14" },
82+
{ semver.new "3.13.0", "python3.13" },
8183
{ semver.new "3.12.0", "python3.12" },
8284
{ semver.new "3.11.0", "python3.11" },
8385
{ semver.new "3.10.0", "python3.10" },
84-
{ semver.new "3.9.0", "python3.9" },
85-
{ semver.new "3.8.0", "python3.8" },
86-
{ semver.new "3.7.0", "python3.7" },
87-
{ semver.new "3.6.0", "python3.6" },
86+
-- the rest are EOL
8887
})
8988
end
9089

0 commit comments

Comments
 (0)