Skip to content

Commit

Permalink
[FIX] Fixes for volumetric data (#278)
Browse files Browse the repository at this point in the history
* python volume fixes

* fix mypy issues

* linter

* fix template flow on windows

* test str fix

* skip templateflow tests on windows

* add matlab volumetric
  • Loading branch information
ReinderVosDeWael committed Feb 18, 2022
1 parent 28245e3 commit 476ccd2
Show file tree
Hide file tree
Showing 10 changed files with 309 additions and 212 deletions.
3 changes: 2 additions & 1 deletion brainstat/_typing.py
Expand Up @@ -5,6 +5,7 @@
In these versions we simply accept anything. The tests in 3.8+
should catch all errors anyway. """
if sys.version_info[1] >= 8:
from numpy.typing import ArrayLike
from numpy.typing import ArrayLike, NDArray
else:
ArrayLike = Any
NDArray = Any

0 comments on commit 476ccd2

Please sign in to comment.