We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7551eb5 commit dbde19dCopy full SHA for dbde19d
src/managers/pyenv/pyenvUtils.ts
@@ -269,7 +269,7 @@ export async function resolvePyenvPath(
269
): Promise<PythonEnvironment | undefined> {
270
try {
271
const e = await nativeFinder.resolve(fsPath);
272
- if (e.kind !== NativePythonEnvironmentKind.pyenv) {
+ if (e.kind !== NativePythonEnvironmentKind.pyenv && e.kind !== NativePythonEnvironmentKind.pyenvVirtualEnv) {
273
return undefined;
274
}
275
const pyenv = await getPyenv(nativeFinder);
0 commit comments