Skip to content

Commit

Permalink
Bump hypothesis-python version to 6.55.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Sep 29, 2022
1 parent e242573 commit 576a3c7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
13 changes: 0 additions & 13 deletions hypothesis-python/RELEASE.rst

This file was deleted.

18 changes: 18 additions & 0 deletions hypothesis-python/docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@ Hypothesis 6.x

.. include:: ../RELEASE.rst

.. _v6.55.0:

-------------------
6.55.0 - 2022-09-29
-------------------

In preparation for `future versions of the Array API standard
<https://data-apis.org/array-api/latest/future_API_evolution.html>`__,
:func:`~hypothesis.extra.array_api.make_strategies_namespace` now accepts an
optional ``api_version`` argument, which determines the version conformed to by
the returned strategies namespace. If ``None``, the version of the passed array
module ``xp`` is inferred.

This release also introduces :func:`xps.real_dtypes`. This is currently
equivalent to the existing :func:`xps.numeric_dtypes` strategy, but exists
because the latter is expected to include complex numbers in the next version of
the standard.

.. _v6.54.6:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.

__version_info__ = (6, 54, 6)
__version_info__ = (6, 55, 0)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit 576a3c7

Please sign in to comment.