Skip to content

Commit 13452fb

Browse files
authored
Drop the “or greater” addition on the line where extension suggests to activate a Python environment (#1915)
## Changes Drop the “or greater” addition on the line where extension suggests to activate a Python environment ## Tests Manually
1 parent 6fcb630 commit 13452fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/databricks-vscode/src/language/EnvironmentDependenciesVerifier.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ export class EnvironmentDependenciesVerifier extends MultiStepAccessVerifier {
185185
return "3.12";
186186
}
187187
if (dbrVersionParts[0] !== "x" && dbrVersionParts[0] > 16) {
188-
return "3.12 or greater";
188+
return "3.12";
189189
}
190-
return "3.10 or greater";
190+
return "3.10";
191191
}
192192

193193
private getVersionMismatchWarning(

0 commit comments

Comments
 (0)