Skip to content

Commit de10dac

Browse files
authored
Remove maximum version restriction for nilearn (#1262)
1 parent efdfaa8 commit de10dac

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
"mapca>=0.0.4",
2727
"matplotlib>=3.7",
2828
"nibabel>=2.5.1",
29-
"nilearn>=0.10.3,<0.12",
29+
"nilearn>=0.10.3",
3030
"numpy>=1.21",
3131
"pandas>=2.0",
3232
"pybtex>=0.25",

tedana/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import numpy as np
1818
import pandas as pd
1919
import requests
20-
from nilearn._utils import check_niimg
20+
from nilearn._utils.niimg_conversions import check_niimg
2121
from nilearn.image import new_img_like
2222

2323
from tedana import utils

tedana/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from matplotlib import __version__ as matplotlib_version
1616
from nibabel import __version__ as nibabel_version
1717
from nilearn import __version__ as nilearn_version
18-
from nilearn._utils import check_niimg
18+
from nilearn._utils.niimg_conversions import check_niimg
1919
from numpy import __version__ as numpy_version
2020
from pandas import __version__ as pandas_version
2121
from robustica import __version__ as robustica_version

uv.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)