Skip to content

Commit

Permalink
Fix pip installation in jenkins; https://stackoverflow.com/questions/…
Browse files Browse the repository at this point in the history
  • Loading branch information
akoumpa committed Jan 30, 2024
1 parent 5a37f94 commit 6fcdf60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ else
${PIP} install build pytest-runner
python -m build --no-isolation --wheel
DIST_FILE=$(find ./dist -name "*.whl" | head -n 1)
${PIP} install "${DIST_FILE}[all]"
${PIP} install --force-reinstall --no-deps --no-cache-dir "${DIST_FILE}[all]"
fi

echo 'All done!'

0 comments on commit 6fcdf60

Please sign in to comment.