We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16960f6 commit 14c3e87Copy full SHA for 14c3e87
.circleci/config.yml
@@ -307,15 +307,21 @@ jobs:
307
circleci step halt
308
fi
309
- run:
310
- name: Check Python version and upgrade pip
+ name: Check Python version and upgrade setup requirements
311
command: |
312
python --version
313
python -m pip install -U pip setuptools numpy
314
315
- name: Install fMRIPrep
+ name: Install graphviz
316
317
- python -m pip install ".[doc]"
318
- make -C docs html
+ apt-get update
+ apt-get install -y graphviz
319
+ - run:
320
+ name: Install fMRIPrep
321
+ command: python -m pip install ".[doc]"
322
323
+ name: Build documentation
324
+ command: make -C docs html
325
- store_artifacts:
326
path: /tmp/src/fmriprep/docs/_build/html
327
0 commit comments