Skip to content

Commit 4b123bc

Browse files
authored
Merge pull request #152 from nipreps/maint/sdcflows-2.0.0
MAINT: Update *SDCFlows* pinning to the latest 2.0.0 release
2 parents bb9104d + bf54616 commit 4b123bc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dmriprep/workflows/base.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,11 @@ def init_single_subject_wf(subject_id):
310310
from sdcflows.workflows.base import init_fmap_preproc_wf
311311

312312
# SDC Step 1: Run basic heuristics to identify available data for fieldmap estimation
313-
fmap_estimators = find_estimators(config.execution.layout)
313+
fmap_estimators = find_estimators(
314+
layout=config.execution.layout,
315+
subject=subject_id,
316+
fmapless=False,
317+
)
314318

315319
# Add fieldmap-less estimators
316320
if not fmap_estimators and config.workflow.use_syn:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ install_requires =
2929
numpy
3030
pybids >= 0.11.1
3131
pyyaml
32-
sdcflows >= 2.0.0rc5, < 3.0
32+
sdcflows ~= 2.0.0
3333
smriprep >= 0.8.0rc0
3434
svgutils != 0.3.2
3535
templateflow ~= 0.6

0 commit comments

Comments
 (0)