We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ecb15c commit 4ee23dfCopy full SHA for 4ee23df
hypothesis-python/RELEASE.rst
hypothesis-python/docs/changes.rst
@@ -18,6 +18,16 @@ Hypothesis 6.x
18
19
.. include:: ../RELEASE.rst
20
21
+.. _v6.29.3:
22
+
23
+-------------------
24
+6.29.3 - 2021-12-02
25
26
27
+This patch fixes a bug in :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`,
28
+which restricted the patterns of singleton dimensions that could be generated for
29
+dimensions that extended beyond ``base_shape`` (:issue:`3170`).
30
31
.. _v6.29.2:
32
33
-------------------
hypothesis-python/src/hypothesis/version.py
@@ -13,5 +13,5 @@
13
#
14
# END HEADER
15
16
-__version_info__ = (6, 29, 2)
+__version_info__ = (6, 29, 3)
17
__version__ = ".".join(map(str, __version_info__))
0 commit comments