Skip to content

Commit

Permalink
Fix pip upgrade in TestSuite checks (#1715)
Browse files Browse the repository at this point in the history
  • Loading branch information
adnaanbheda authored and Kludex committed Oct 29, 2022
1 parent d87e47d commit 2e937be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/install
Expand Up @@ -12,8 +12,8 @@ if [ -z "$GITHUB_ACTIONS" ]; then
"$PYTHON" -m venv "$VENV"
PIP="$VENV/bin/pip"
else
PIP="pip"
PIP="$PYTHON -m pip"
fi

"$PIP" install -U pip
"$PIP" install -r "$REQUIREMENTS"
${PIP} install -U pip
${PIP} install -r "$REQUIREMENTS"

0 comments on commit 2e937be

Please sign in to comment.