File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 22
33from .version import __version__
44
5+ # deprecation of fooof for specparam
6+ from warnings import warn , simplefilter
7+ simplefilter ('always' ) # make sure user sees it once, on every import
8+ warn_text = 'Warning: The fooof package is being deprecated in favor of the\
9+ spectral parameterization (specparam) package. This version of fooof is\
10+ functional, however we recommend upgrading to specparam, because this 1.1\
11+ version of fooof will not have continuing development. All new features and\
12+ development will be done on the specparam package.'
13+ warn (warn_text , DeprecationWarning , stacklevel = 2 )
14+
515from .bands import Bands
616from .objs import FOOOF , FOOOFGroup
717from .objs .utils import fit_fooof_3d
You can’t perform that action at this time.
0 commit comments