This patch fixes a significant slowdown when using the :func:`~hypothesis.stateful.precondition` decorator in some cases, due to expensive repr formatting internally (:issue:`3963`).
6.100.2
--------------------
Explicitly cast :obj:`numpy.finfo.smallest_normal` to builtin `float` in preparation for the :pypi:`numpy==2.0 <numpy>` release (:issue:`3950`)
6.100.1
--------------------
This patch improve a rare error message for flaky tests (:issue:`3940`).
6.100.0
--------------------
The :func:`~hypothesis.extra.numpy.from_dtype` function no longer generates ``NaT`` ("not-a-time") values for the ``datetime64`` or ``timedelta64`` dtypes if passed ``allow_nan=False`` (:issue:`3943`).
6.99.13
--------------------
This patch includes the :obj:`~hypothesis.settings.backend` setting in the ``how_generated`` field of our :doc:`observability output <observability>`.
6.99.12
--------------------
If you were running Python 3.13 (currently in alpha) with :pypi:`pytest-xdist` and then attempted to pretty-print a ``lambda`` functions which was created using the :func:`eval` builtin, it would have raised an AssertionError. Now you'll get ``"lambda ...: <unknown>"``, as expected.