Skip to content

Commit

Permalink
[FIX] md5_sum_file from nilearn
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhenqi77 committed Feb 1, 2024
1 parent cb27157 commit 19f0d6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion neuromaps/datasets/_osf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
from pkg_resources import resource_filename
import json

from nilearn.datasets.utils import _md5_sum_file
try:
# nilearn 0.10.3
from nilearn.datasets._utils import _md5_sum_file
except ImportError:
from nilearn.datasets.utils import _md5_sum_file

from neuromaps.datasets.utils import _get_session

Expand Down

0 comments on commit 19f0d6c

Please sign in to comment.