File tree 1 file changed +2
-2
lines changed
src/extension/debugger/adapter
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
159
159
}
160
160
const prompts = [ Interpreters . changePythonInterpreter , Common . doNotShowAgain ] ;
161
161
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 .' ) ,
163
163
{ modal : true } ,
164
164
...prompts ,
165
165
) ;
@@ -181,7 +181,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
181
181
if ( interpreter ) {
182
182
if (
183
183
( 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 )
185
185
) {
186
186
this . showDeprecatedPythonMessage ( ) ;
187
187
}
You can’t perform that action at this time.
0 commit comments