API: mark for removal unused deprecated API (IJPL-275)

GitOrigin-RevId: d4f67b9700b60c8eb278ed79baaba4fa01d71fd9
This commit is contained in:
Nikolay Chashnikov
2024-02-16 14:31:07 +01:00
committed by intellij-monorepo-bot
parent 46d86804f7
commit 8856dd6264
6 changed files with 13 additions and 4 deletions

View File

@@ -16,6 +16,7 @@ import com.intellij.openapi.util.text.StringUtil
import com.jetbrains.python.PySdkBundle
import com.jetbrains.python.packaging.*
import com.jetbrains.python.sdk.PySdkUtil
import org.jetbrains.annotations.ApiStatus
@Deprecated("Use Sdk.configureBuilderToRunPythonOnTarget")
@Throws(ExecutionException::class)
@@ -38,6 +39,7 @@ fun runConda(sdk: Sdk?, arguments: List<String>): ProcessOutput {
@Deprecated("Use Sdk.configureBuilderToRunPythonOnTarget")
@ApiStatus.ScheduledForRemoval
@Throws(ExecutionException::class)
fun runCondaPython(condaPythonExecutable: String, arguments: List<String>): ProcessOutput {
return run(condaPythonExecutable, arguments, PySdkUtil.activateVirtualEnv(condaPythonExecutable))