From a9a59b7c80c70d28117303d4e885daab308de12e Mon Sep 17 00:00:00 2001 From: chris-langfield Date: Thu, 5 Sep 2024 09:03:23 -0400 Subject: [PATCH] extend neurodsp deprec by 1 month --- src/tests/unit/cpu/test_ibldsp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/unit/cpu/test_ibldsp.py b/src/tests/unit/cpu/test_ibldsp.py index 40dfc96..a8214c9 100644 --- a/src/tests/unit/cpu/test_ibldsp.py +++ b/src/tests/unit/cpu/test_ibldsp.py @@ -632,7 +632,7 @@ class TestNameDeprecationDate(unittest.TestCase): def test_neurodsp_import(self): # Check that the old import still works and gives the same package. # (ibldsp.voltage is imported at the top of this file.) - with self.assertWarnsRegex(FutureWarning, "01-Sep-2024"): + with self.assertWarnsRegex(FutureWarning, "01-Oct-2024"): import neurodsp self.assertEqual(neurodsp.voltage, voltage) @@ -643,7 +643,7 @@ def test_deprecation_countdown(self): # repository import datetime - if datetime.datetime.now() > datetime.datetime(2024, 9, 1): + if datetime.datetime.now() > datetime.datetime(2024, 10, 1): raise NotImplementedError( "neurodsp will not longer be supported. " "Change all references to ibldsp."