From c08d67cac518f392c954bca08b54c5561ebf4383 Mon Sep 17 00:00:00 2001 From: mathiasg Date: Thu, 14 Aug 2025 16:25:38 -0400 Subject: [PATCH 1/2] fix: make fmt explicit --- scripts/check_outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_outputs.py b/scripts/check_outputs.py index 5aa22e1b..47018523 100644 --- a/scripts/check_outputs.py +++ b/scripts/check_outputs.py @@ -162,7 +162,7 @@ def _check_xfms(xfms): if xfm.name.endswith(".txt"): assert nt.linear.load(xfm, fmt='itk') elif xfm.name.endswith('.h5'): - assert nt.manip.load(xfm) + assert nt.manip.load(xfm, fmt='itk') elif xfm.name.endswith('.json'): meta = json.loads(xfm.read_text()) assert 'Sources' in meta From 7e0a48f61c5eed2b24e459402f8e4794c5e68caa Mon Sep 17 00:00:00 2001 From: mathiasg Date: Thu, 14 Aug 2025 16:58:25 -0400 Subject: [PATCH 2/2] chore: cap pandas --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6de23594..03295de6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "niworkflows >= 1.13.1", "numpy >= 1.21.0", "packaging", - "pandas", + "pandas < 3", "pooch", "psutil >= 5.4", "pybids >= 0.15.0",