Skip to content

Commit b292836

Browse files
committed
FIX: Do not validate built paths
1 parent c4ceb2e commit b292836

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

niworkflows/reports/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(self, layout, out_dir, config=None):
161161

162162
entities['extension'] = 'svg'
163163
entities['datatype'] = 'figures'
164-
linked_svg = layout.build_path(entities)
164+
linked_svg = layout.build_path(entities, validate=False)
165165
if linked_svg is None:
166166
raise ValueError("Could not generate SVG path to copy {src}"
167167
" to. Entities: {entities}".format(src=src,

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ install_requires =
2929
nipype >= 1.2.2
3030
packaging
3131
pandas
32-
pybids >= 0.9.2, < 0.9.4
32+
pybids >= 0.9.4
3333
PyYAML
3434
scikit-image
3535
scipy
@@ -38,8 +38,8 @@ install_requires =
3838
transforms3d
3939
templateflow ~= 0.4.1
4040
test_requires =
41-
pytest
42-
pytest-xdist
41+
pytest >= 4.4
42+
pytest-xdist >= 1.28
4343
pytest-cov
4444
coverage
4545
packages = find:

0 commit comments

Comments
 (0)