File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 - name : Install docs dependencies
2222 run : |
2323 python -m pip install --upgrade pip
24- pip install -r docs/requirements.txt
24+ if [ -f docs/requirements.txt ]; then
25+ pip install -r docs/requirements.txt
26+ else
27+ echo "docs/requirements.txt not found — installing minimal docs deps"
28+ pip install mkdocs mkdocs-material mkdocs-awesome-pages-plugin
29+ fi
2530
2631 - name : Build MkDocs site
2732 run : mkdocs build --clean
Original file line number Diff line number Diff line change 1+ """
2+ scripts package helpers and entry points.
3+
4+ Author: Karl Koschutnig (MRI-Lab Graz)
5+ Contact: karl.koschutnig@uni-graz.at
6+ Date:
7+ """
8+
9+ __all__ = []
Original file line number Diff line number Diff line change 66Test suite for computation integrity validation system.
77Ensures faulty computations are detected and flagged properly.
88
9- Autor : Karl Koschutnig (MRI -Lab Graz)
10- karl.koschutnig@uni-graz.at
9+ Author : Karl Koschutnig (MRI-Lab Graz)
10+ Contact: karl.koschutnig@uni-graz.at
1111
1212"""
1313
Original file line number Diff line number Diff line change 77This script validates the DSI Studio installation and configuration
88for connectivity matrix extraction.
99
10- Autor: Karl Koschutnig (MRI -Lab Graz)
11- karl.koschutnig@uni-graz.at
12- Date: 2025-08-07
10+ Author: Karl Koschutnig (MRI-Lab Graz)
11+ Contact: karl.koschutnig@uni-graz.at
1312"""
1413
1514import os
You can’t perform that action at this time.
0 commit comments