From 85f1a291d66fe7e5ea13b4b217b00dc0350fb67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 13 Nov 2024 11:32:30 -0500 Subject: [PATCH] ENH: Relax `trimeshpy` version Relax `trimeshpy` version so that more recent versions are allowed: the changes in the classes used in `tractodata` are safe and do not affect the behavior: they only drop checks for `VTK` <= 5 and 8, adopt keyword arguments in some calls, use Python built-in types (e.g. `int` instead of `np.int`), use `NiBabel`'s `affine` property on NIfTI images, and drop `future` imports. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e260eea..4a1cbe1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ "nibabel", "numpy", "pandas", - "trimeshpy == 0.0.2", + "trimeshpy >= 0.0.2", "tqdm", ] description = "Tractography data repository to be used for tractography research"