Skip to content

Commit 288edfa

Browse files
authored
Fix uv issue (#1243)
Signed-off-by: Mihai Criveti <[email protected]>
1 parent 7e7b1c3 commit 288edfa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,20 +122,20 @@ activate:
122122

123123
.PHONY: install
124124
install: venv
125-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m uv pip install ."
125+
@/bin/bash -c "source $(VENV_DIR)/bin/activate && uv pip install ."
126126

127127
.PHONY: install-db
128128
install-db: venv
129-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m uv pip install .[redis,postgres]"
129+
@/bin/bash -c "source $(VENV_DIR)/bin/activate && uv pip install .[redis,postgres]"
130130

131131
.PHONY: install-dev
132132
install-dev: venv
133-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m uv pip install .[dev]"
133+
@/bin/bash -c "source $(VENV_DIR)/bin/activate && uv pip install --group dev ."
134134

135135
.PHONY: update
136136
update:
137137
@echo "⬆️ Updating installed dependencies..."
138-
@/bin/bash -c "source $(VENV_DIR)/bin/activate && python3 -m uv pip install -U .[dev]"
138+
@/bin/bash -c "source $(VENV_DIR)/bin/activate && uv pip install -U --group dev ."
139139

140140
# help: check-env - Verify all required env vars in .env are present
141141
.PHONY: check-env check-env-dev

0 commit comments

Comments
 (0)