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 ddc765e commit b43bc25Copy full SHA for b43bc25
src/client/interpreter/configuration/environmentTypeComparer.ts
@@ -100,6 +100,9 @@ export class EnvironmentTypeComparer implements IInterpreterComparer {
100
// We're not sure if these envs were created for the workspace, so do not recommend them.
101
return false;
102
}
103
+ if (i.version?.major === 2) {
104
+ return false;
105
+ }
106
return true;
107
});
108
filteredInterpreters.sort(this.compare.bind(this));
0 commit comments