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.

sync-uv 192B

12345678910
  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. # check uv.lock in sync with pyproject.toml
  8. uv lock --project api