Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
output.write(f"{key}={path}\n")

- name: Install dependencies
env:
# GPU-less runners: fetch CPU-only torch wheels (via braindecode) instead
# of the default CUDA builds (~5 GB of unused CUDA libs that also bloat the
# uv cache). Scoped to CI, not pyproject, so local/GPU installs are unaffected.
UV_TORCH_BACKEND: cpu
run: uv pip install -e .[all]

- name: Restore Data Caches (pull_request)
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ jobs:
- name: Show Python Version
run: python --version
- name: Install EEGDash from Current Checkout
env:
# GPU-less runners: fetch CPU-only torch wheels (via braindecode) instead
# of the default CUDA builds (~5 GB of unused CUDA libs that also bloat the
# uv cache). Scoped to CI, not pyproject, so local/GPU installs are unaffected.
UV_TORCH_BACKEND: cpu
run: uv pip install -e .[tests]
# Show EEGDash Version
- name: Show EEGDash Version
Expand Down
Loading