Skip to content

Commit 60ab9fc

Browse files
authored
Merge pull request #479 from mgxd/ci/fix-outputs-check
fix: make fmt explicit
2 parents 6839efe + 7e0a48f commit 60ab9fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies = [
2828
"niworkflows >= 1.13.1",
2929
"numpy >= 1.21.0",
3030
"packaging",
31-
"pandas",
31+
"pandas < 3",
3232
"pooch",
3333
"psutil >= 5.4",
3434
"pybids >= 0.15.0",

scripts/check_outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def _check_xfms(xfms):
162162
if xfm.name.endswith(".txt"):
163163
assert nt.linear.load(xfm, fmt='itk')
164164
elif xfm.name.endswith('.h5'):
165-
assert nt.manip.load(xfm)
165+
assert nt.manip.load(xfm, fmt='itk')
166166
elif xfm.name.endswith('.json'):
167167
meta = json.loads(xfm.read_text())
168168
assert 'Sources' in meta

0 commit comments

Comments
 (0)