We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4ebb02 commit 93342b9Copy full SHA for 93342b9
hypothesis-python/RELEASE.rst
hypothesis-python/docs/changes.rst
@@ -18,6 +18,18 @@ Hypothesis 6.x
18
19
.. include:: ../RELEASE.rst
20
21
+.. _v6.8.9:
22
+
23
+------------------
24
+6.8.9 - 2021-04-07
25
26
27
+This patch fixes :func:`~hypothesis.strategies.from_type` with
28
+:mod:`abstract types <python:abc>` which have either required but
29
+non-type-annotated arguments to ``__init__``, or where
30
+:func:`~hypothesis.strategies.from_type` can handle some concrete
31
+subclasses but not others.
32
33
.. _v6.8.8:
34
35
------------------
hypothesis-python/src/hypothesis/version.py
@@ -13,5 +13,5 @@
13
#
14
# END HEADER
15
16
-__version_info__ = (6, 8, 8)
+__version_info__ = (6, 8, 9)
17
__version__ = ".".join(map(str, __version_info__))
0 commit comments