We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1237ff commit 4dc339fCopy full SHA for 4dc339f
1 file changed
Makefile
@@ -11,9 +11,10 @@ PYTHON_VERSION ?= 3.12
11
ensure-uv: # Install uv if not present
12
@which uv > /dev/null || (curl -LsSf https://astral.sh/uv/install.sh | sh)
13
14
-setup: ensure-uv compile-deps ensure-scripts install-hooks # Install dependencies
+setup: ensure-uv compile-deps ensure-scripts # Install dependencies
15
UV_PYTHON_VERSION=$(PYTHON_VERSION) uv venv
16
UV_PYTHON_VERSION=$(PYTHON_VERSION) uv pip sync requirements.txt requirements-dev.txt
17
+ $(MAKE) install-hooks
18
19
install-hooks: # Install pre-commit hooks if in a git repo with hooks configured
20
@if [ -d .git ] && [ -f .pre-commit-config.yaml ]; then \
0 commit comments