We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde1ba3 commit b01cb20Copy full SHA for b01cb20
Makefile
@@ -59,9 +59,9 @@ fmt: dev
59
install: build
60
$(UV) pip install dist/*.whl
61
62
-uv.lock: dev
+$(UV_LOCK): dev
63
$(UV) lock
64
-it: uv.lock
+it: $(UV_LOCK)
65
$(MAKE) -C ./integration
66
67
lint: dev
integration/Makefile
@@ -71,6 +71,7 @@ preview:
71
72
# Build Dockerfile
73
build:
74
+ make -C .. $(UV_LOCK)
75
docker build -t $(DOCKER_PROJECT_IMAGE_TAG) ..
76
77
# Tear down resources.
vars.mk
@@ -20,3 +20,5 @@ PYTHON ?= $(shell command -v python || command -v python3)
20
UV ?= uv
21
# uv defaults virtual environment to `$VIRTUAL_ENV` if set; otherwise .venv
22
VIRTUAL_ENV ?= .venv
23
+
24
+UV_LOCK := uv.lock
0 commit comments