You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: streamline CUDA runtime dependency generation
Collapse runtime dependencies into the generated CUDA extras and update the generator, installer docs, and development workflow around the new CUDA-aware dependency model.
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
make setup # installs the pinned mise version (if missing) + pinned tool versions from mise.lock
68
-
uv sync --frozen --extra cu128 --extra engine --group dev
68
+
uv sync --frozen --extra cu128 --group dev
69
69
# or, for CUDA 13.0:
70
-
uv sync --frozen --extra cu130 --extra engine --group dev
70
+
uv sync --frozen --extra cu130 --group dev
71
71
```
72
72
73
73
Development tools (`ruff`, `ty`, `yq`, `gh`, etc.) are managed via [mise](https://mise.jdx.dev/). Tool versions are declared in `.mise.toml` and locked in `mise.lock` (committed). mise also manages environment variables -- place project-local secrets or overrides in `.env` or `.env.local` (both git-ignored, auto-loaded by mise).
0 commit comments