We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c38171 commit c5c1562Copy full SHA for c5c1562
.circleci/manage-test-db.sh
@@ -25,7 +25,7 @@ function_exists() {
25
# Snowflake
26
snowflake_init() {
27
echo "Installing Snowflake CLI"
28
- pip install snowflake-cli-labs
+ pip install "snowflake-cli-labs<3.8.0"
29
}
30
31
snowflake_up() {
vscode/extension/src/utilities/common/python.ts
@@ -84,7 +84,9 @@ export async function getInterpreterDetails(
84
path: [environment?.executable.uri.fsPath],
85
resource,
86
isVirtualEnvironment: isVirtualEnv,
87
- binPath: binPath ? path.join(binPath, IS_WINDOWS ? 'Scripts' : 'bin') : undefined,
+ binPath: binPath
88
+ ? path.join(binPath, IS_WINDOWS ? 'Scripts' : 'bin')
89
+ : undefined,
90
91
92
return { path: undefined, resource }
0 commit comments