@@ -16,12 +16,12 @@ bootstrap: python-version clean-venv venv ## Delete existing & create new venv
1616
1717prod : in-venv # # install package dependencies
1818 # installing prod dependencies only...
19- @ uv pip install -r pyproject.toml
19+ uv pip install -r pyproject.toml
2020.PHONY : prod
2121
2222dev : prod # # install (all) dev dependencies
2323 # installing dev dependencies...
24- @ uv pip install -r pyproject.toml --all-extras -e .
24+ uv pip install -r pyproject.toml --all-extras -e .
2525.PHONY : dev
2626
2727bootstrap-dev : # # set up a fresh dev environment
@@ -34,8 +34,8 @@ bootstrap-dev: ## set up a fresh dev environment
3434
3535setup-pre-commit : in-venv # # install pre-commit hooks
3636 # installing pre-commit hooks...
37- @ uvx pre-commit autoupdate
38- @ uvx pre-commit install && @ uvx pre-commit install --hook-type commit-msg
37+ uvx pre-commit autoupdate
38+ uvx pre-commit install && uvx pre-commit install --hook-type commit-msg
3939.PHONY : setup-pre-commit
4040
4141setup-docs : in-venv # # install docs dependencies
@@ -49,9 +49,9 @@ build-docs: in-venv ## build docs
4949.PHONY : build-docs
5050
5151update : in-venv # # update lock file if needed
52- @ uv pip compile pyproject.toml --all-extras --upgrade --output-file requirements-dev.txt
53- @ uv sync
54- @ uvx pre-commit autoupdate
52+ uv pip compile pyproject.toml --all-extras --upgrade --output-file requirements-dev.txt
53+ uv sync
54+ uvx pre-commit autoupdate
5555.PHONY : update
5656
5757lint : in-venv # # Run linter on python files
0 commit comments