Skip to content

Commit a01607f

Browse files
Edited makefile. (#52)
1 parent 47c7d65 commit a01607f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ clean: ## Clean autogenerated files
1515
find . | grep -E ".ipynb_checkpoints" | xargs rm -rf
1616
rm -f .coverage
1717

18-
clean-pycache: ## Clean Python cache files
19-
find . | grep -E "(__pycache__|\.pyc|\.pyo$$)" | xargs rm -rf
20-
2118
format: ## Run pre-commit hooks
2219
uv run pre-commit run -a
2320

@@ -32,13 +29,16 @@ install: ## Install dependencies from `pyproject.toml`
3229
uv sync
3330

3431
install-dev: ## Install development dependencies from `pyproject.toml`
35-
uv sync --dev
32+
uv sync --extra dev
3633

3734
install-cuda: ## Install dependencies with CUDA support
3835
uv sync --extra cu12
3936

40-
install-dev-cuda: ## Install development dependencies with CUDA support
41-
uv sync --dev --extra cu12
37+
install-examples: ## Install examples dependencies from `pyproject.toml`
38+
uv sync --extra examples
39+
40+
install-all: ## Install all dependencies from `pyproject.toml`
41+
uv sync --all-extras
4242

4343
remove: ## Remove installed dependecies
4444
rm -rf .venv uv.lock

0 commit comments

Comments
 (0)