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.
2 parents 6839efe + 7e0a48f commit 60ab9fcCopy full SHA for 60ab9fc
pyproject.toml
@@ -28,7 +28,7 @@ dependencies = [
28
"niworkflows >= 1.13.1",
29
"numpy >= 1.21.0",
30
"packaging",
31
- "pandas",
+ "pandas < 3",
32
"pooch",
33
"psutil >= 5.4",
34
"pybids >= 0.15.0",
scripts/check_outputs.py
@@ -162,7 +162,7 @@ def _check_xfms(xfms):
162
if xfm.name.endswith(".txt"):
163
assert nt.linear.load(xfm, fmt='itk')
164
elif xfm.name.endswith('.h5'):
165
- assert nt.manip.load(xfm)
+ assert nt.manip.load(xfm, fmt='itk')
166
elif xfm.name.endswith('.json'):
167
meta = json.loads(xfm.read_text())
168
assert 'Sources' in meta
0 commit comments