Skip to content

Commit

Permalink
ENH: Relax required trimeshpy dependency version
Browse files Browse the repository at this point in the history
Relax required `trimeshpy` dependency version so that more recent
versions are allowed: do not pin to version `0.0.2` and allow versions
equal to or greater than `0.0.2`.

The changes in the `trimeshpy` classes used in `tractodata` between
versions `0.0.2` and `0.0.3` (latest release) 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 import from `future`.
  • Loading branch information
jhlegarreta committed Nov 13, 2024
1 parent 1393009 commit fef62dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit fef62dd

Please sign in to comment.