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 84e3309 commit 3a0eb66Copy full SHA for 3a0eb66
src/client/pythonEnvironments/creation/provider/condaCreationProvider.ts
@@ -192,6 +192,10 @@ async function createEnvironment(options?: CreateEnvironmentOptions): Promise<Cr
192
throw ex;
193
}
194
195
+ if (version === undefined) {
196
+ traceError('Python version was not selected for creating conda environment.');
197
+ return MultiStepAction.Cancel;
198
+ }
199
return MultiStepAction.Continue;
200
},
201
undefined,
0 commit comments