PY-79802 Correctly parse 3.14 language level

(cherry picked from commit 9c0a91749ef9e93430b2e568331127aaa6cd1e98)

IJ-MR-157680

GitOrigin-RevId: eb106921370f67813db0acd7e4d80fe0fd3c8360
This commit is contained in:
Pavel Karateev
2025-03-14 14:30:42 +01:00
committed by intellij-monorepo-bot
parent 400ad9f4f9
commit 82e433af01

View File

@@ -199,6 +199,9 @@ public enum LanguageLevel {
if (pythonVersionOutput.startsWith("3.13")) {
return PYTHON313;
}
if (pythonVersionOutput.startsWith("3.14")) {
return PYTHON314;
}
return DEFAULT3;
}
return null;