Skip to content

Commit 1240585

Browse files
committed
tuning makefiles
1 parent 42df15a commit 1240585

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ info: info-api info-envs info-tools info-pip ## all infos
5252

5353

5454
.venv: .check-uv-installed
55-
# Using $$UV_PYTHON
5655
@uv venv $@
5756
## upgrading tools to latest version in $(shell python3 --version)
5857
@uv pip --quiet install --upgrade \
@@ -65,9 +64,10 @@ info: info-api info-envs info-tools info-pip ## all infos
6564

6665
.PHONY: devenv
6766
devenv: .venv .vscode/settings.json .vscode/launch.json ## create a python virtual environment with dev tools (e.g. linters, etc)
67+
# Installing requirements.txt
6868
@uv pip --quiet install -r requirements.txt
6969
# Installing pre-commit hooks in current .git repo
70-
uvx pre-commit install
70+
@uvx pre-commit install
7171
@echo "To activate the venv, execute 'source .venv/bin/activate'"
7272

7373

clients/python/requirements/dev.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1+
--editable artifacts/client
2+
--editable .
3+
14
-r unit-test.txt
25
-r e2e-test.txt
36
pylint
4-
5-
6-
--editable artifacts/client
7-
--editable .

0 commit comments

Comments
 (0)