uv: don't use cache (#32854)

* no cache

* update
pull/32855/head
Maxime Desroches 10 months ago committed by GitHub
parent 12d5afba73
commit a74f794213
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      tools/install_python_dependencies.sh

@ -16,8 +16,12 @@ if ! command -v "uv" > /dev/null 2>&1; then
eval $ADD_PATH_CMD
fi
echo "updating uv..."
uv self update
# TODO: remove --no-cache once this is fixed: https://github.com/astral-sh/uv/issues/4378
echo "installing python packages..."
uv sync --all-extras
uv --no-cache sync --all-extras
source .venv/bin/activate
echo "PYTHONPATH=${PWD}" > $ROOT/.env

Loading…
Cancel
Save