You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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