n_features_ from sklearn's PCA is deprecated and has to be updated to n_features_in_.
/export/home/mflores/.conda/envs/tedana/lib/python3.9/site-packages/sklearn/utils/deprecation.py:101: FutureWarning: Attribute `n_features_` was deprecated in version 1.2 and will be removed in 1.4. Use `n_features_in_` instead.
warnings.warn(msg, category=FutureWarning)
n_features_
from sklearn's PCA is deprecated and has to be updated ton_features_in_
.