PY-83387 add 3.13 option to new-conda-venv wizard

(cherry picked from commit 9c4776f05f7a8486ad2f037f36129adeb0e22af2)

IJ-MR-172562

GitOrigin-RevId: d6ed8996c1bd3e99985314372205be55c5844a85
This commit is contained in:
Pavel Karateev
2025-08-15 14:02:49 +02:00
committed by intellij-monorepo-bot
parent e5ee826521
commit 57503b6e71

View File

@@ -46,13 +46,13 @@ import kotlin.io.path.pathString
internal val condaSupportedLanguages: List<LanguageLevel>
get() = LanguageLevel.SUPPORTED_LEVELS
.asReversed()
.filter { it < LanguageLevel.PYTHON313 }
.filter { it < LanguageLevel.PYTHON314 }
val condaLatestSupportedLanguage: LanguageLevel @ApiStatus.Internal get() =
condaSupportedLanguages.maxWith(LanguageLevel.VERSION_COMPARATOR)
/**
* See [com.jetbrains.env.conda.PyCondaSdkTest]
* See `com.jetbrains.env.python.conda.PyCondaSdkTest`
*/
suspend fun PyCondaCommand.createCondaSdkFromExistingEnv(
condaIdentity: PyCondaEnvIdentity,
@@ -118,7 +118,7 @@ private suspend fun getCondaInterpreterOutput(
}
/**
* See [com.jetbrains.env.conda.PyCondaSdkTest]
* See `com.jetbrains.env.python.conda.PyCondaSdkTest`
*/
suspend fun PyCondaCommand.createCondaSdkAlongWithNewEnv(
newCondaEnvInfo: NewCondaEnvRequest,