File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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-
2118format : # # 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
3431install-dev : # # Install development dependencies from `pyproject.toml`
35- uv sync --dev
32+ uv sync --extra dev
3633
3734install-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
4343remove : # # Remove installed dependecies
4444 rm -rf .venv uv.lock
You can’t perform that action at this time.
0 commit comments