File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/extension/debugger/adapter Expand file tree Collapse file tree 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
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 }
You can’t perform that action at this time.
0 commit comments