Skip to content

Commit 2422397

Browse files
committed
fixes
1 parent 79d321f commit 2422397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension/debugger/adapter/factory.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
159159
}
160160
const prompts = [Interpreters.changePythonInterpreter, Common.doNotShowAgain];
161161
const selection = await showErrorMessage(
162-
l10n.t('The debugger in the python extension no longer supports python versions minor than 3.8.'),
162+
l10n.t('The debugger in the python extension no longer supports python versions minor than 3.9.'),
163163
{ modal: true },
164164
...prompts,
165165
);
@@ -181,7 +181,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
181181
if (interpreter) {
182182
if (
183183
(interpreter.version?.major ?? 0) < 3 ||
184-
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 7)
184+
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 8)
185185
) {
186186
this.showDeprecatedPythonMessage();
187187
}

0 commit comments

Comments
 (0)