Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213
  1. #!/bin/bash
  2. # rely on `uv` in path
  3. if ! command -v uv &> /dev/null; then
  4. echo "Installing uv ..."
  5. pip install uv
  6. fi
  7. SCRIPT_DIR="$(dirname "$(realpath "$0")")"
  8. cd "$SCRIPT_DIR/.."
  9. # check uv.lock in sync with pyproject.toml
  10. uv lock --project api