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