diff --git a/src/cocotb_bus/scoreboard.py b/src/cocotb_bus/scoreboard.py index ee854771..abb0ea7d 100644 --- a/src/cocotb_bus/scoreboard.py +++ b/src/cocotb_bus/scoreboard.py @@ -7,7 +7,6 @@ """Common scoreboarding capability.""" import logging -import warnings from cocotb.utils import hexdump, hexdiffs from cocotb.log import SimLog @@ -36,8 +35,6 @@ class Scoreboard: fail_immediately (bool, optional): Raise :any:`TestFailure` immediately when something is wrong instead of just recording an error. Default is ``True``. - - .. deprecated:: 1.4.1 """ def __init__(self, dut, reorder_depth=0, fail_immediately=True): # FIXME: reorder_depth needed here? @@ -47,12 +44,6 @@ def __init__(self, dut, reorder_depth=0, fail_immediately=True): # FIXME: reord self.expected = {} self._imm = fail_immediately - warnings.warn( - "This Scoreboard implementation has been deprecated and will be removed soon.\n" - "If this implementation works for you, copy the implementation into your project, " - "while following cocotb's license agreement.", - DeprecationWarning) - @property def result(self): """Determine the test result, do we have any pending data remaining?