Skip to content

Commit

Permalink
Update Python version threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
debonte committed May 17, 2022
1 parent 4b8ee0c commit 1c85c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/intellisense/notebookPythonPathService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class NotebookPythonPathService implements IExtensionSingleActivationServ
} else if (!pythonVersion) {
traceInfo(`LSP Notebooks experiment is disabled -- Python disabled or not installed`);
} else if (
semver.lte(pythonVersion, '2022.7.11361006') &&
semver.lte(pythonVersion, '2022.7.11371008') &&
!semver.prerelease(pythonVersion)?.includes('dev')
) {
traceInfo(`LSP Notebooks experiment is disabled -- Python does not support experiment`);
Expand Down

0 comments on commit 1c85c7d

Please sign in to comment.