You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -18,15 +17,11 @@ export async function registerPoetryFeatures(
18
17
try{
19
18
constpoetryPath=awaitgetPoetry(nativeFinder);
20
19
if(poetryPath){
21
-
constversion=awaitgetPoetryVersion(poetryPath);
22
-
if(!version){
23
-
showErrorMessage(l10n.t('Poetry version could not be determined.'));
24
-
return;
25
-
}
26
20
traceInfo(
27
-
'The `shell` command is not available by default in Poetry versions 2.0.0 and above. Therefore all shell activation will be handled by calling `source <path-to-activate>`. If you face any problems with shell activation, please file an issue at https://github.com/microsoft/vscode-python-environments/issues to help us improve this implementation. Note the current version of Poetry is {0}.',
28
-
version,
21
+
'The `shell` command is not available by default in Poetry versions 2.0.0 and above. Therefore all shell activation will be handled by calling `source <path-to-activate>`. If you face any problems with shell activation, please file an issue at https://github.com/microsoft/vscode-python-environments/issues to help us improve this implementation.',
29
22
);
23
+
constversion=awaitgetPoetryVersion(poetryPath);
24
+
traceInfo(`Poetry found at ${poetryPath}, version: ${version}`);
0 commit comments