Skip to content

Commit

Permalink
extend neurodsp deprec by 1 month
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-langfield committed Sep 5, 2024
1 parent 79685fa commit a9a59b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/unit/cpu/test_ibldsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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."
Expand Down

0 comments on commit a9a59b7

Please sign in to comment.