Skip to content

Commit 4502717

Browse files
authored
Fix pip upgrade in TestSuite checks (#1715)
1 parent a94781d commit 4502717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/install

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if [ -z "$GITHUB_ACTIONS" ]; then
1212
"$PYTHON" -m venv "$VENV"
1313
PIP="$VENV/bin/pip"
1414
else
15-
PIP="pip"
15+
PIP="$PYTHON -m pip"
1616
fi
1717

18-
"$PIP" install -U pip
19-
"$PIP" install -r "$REQUIREMENTS"
18+
${PIP} install -U pip
19+
${PIP} install -r "$REQUIREMENTS"

0 commit comments

Comments
 (0)