From df6e1930d99abc27c5340705968a28e08db67521 Mon Sep 17 00:00:00 2001 From: Tom Donoghue Date: Tue, 5 Sep 2023 13:20:57 -0400 Subject: [PATCH 1/3] remove always filter --- fooof/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fooof/__init__.py b/fooof/__init__.py index 6fa1b669..77c1ac43 100644 --- a/fooof/__init__.py +++ b/fooof/__init__.py @@ -5,7 +5,7 @@ # Deprecation of fooof / move to specparam message # Note: this warning is for fooof v1.1 specifically, and should be removed in specparam 2.0 from warnings import warn, simplefilter -simplefilter('always') # make sure user sees it once, on every import +#simplefilter('always') # make sure user sees it once, on every import DEPRECATION_TEXT = ("\nThe `fooof` package is being deprecated and replaced by the " "`specparam` (spectral parameterization) package." "\nThis version of `fooof` (1.1) is fully functional, but will not be further updated." From ad8a7bc35eccfb81a62e593476306fd3716b2308 Mon Sep 17 00:00:00 2001 From: Tom Donoghue Date: Wed, 13 Sep 2023 08:32:58 -0400 Subject: [PATCH 2/3] remove always warning filter from warning --- fooof/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fooof/__init__.py b/fooof/__init__.py index 77c1ac43..02459e06 100644 --- a/fooof/__init__.py +++ b/fooof/__init__.py @@ -4,8 +4,7 @@ # Deprecation of fooof / move to specparam message # Note: this warning is for fooof v1.1 specifically, and should be removed in specparam 2.0 -from warnings import warn, simplefilter -#simplefilter('always') # make sure user sees it once, on every import +from warnings import warn DEPRECATION_TEXT = ("\nThe `fooof` package is being deprecated and replaced by the " "`specparam` (spectral parameterization) package." "\nThis version of `fooof` (1.1) is fully functional, but will not be further updated." From efc993d66640e1990c67c59cb814ffee78ecff33 Mon Sep 17 00:00:00 2001 From: Tom Donoghue Date: Wed, 13 Sep 2023 08:35:25 -0400 Subject: [PATCH 3/3] bumb rc version --- fooof/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fooof/version.py b/fooof/version.py index 694abe0c..24d7fa0a 100644 --- a/fooof/version.py +++ b/fooof/version.py @@ -1 +1 @@ -__version__ = '1.1.0rc2' \ No newline at end of file +__version__ = '1.1.0rc3' \ No newline at end of file