Skip to content

Commit

Permalink
Bump hypothesis-python version to 6.34.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Dec 31, 2021
1 parent e024d1f commit f91adfe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 0 additions & 5 deletions hypothesis-python/RELEASE.rst

This file was deleted.

10 changes: 10 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -18,6 +18,16 @@ Hypothesis 6.x

.. include:: ../RELEASE.rst

.. _v6.34.0:

-------------------
6.34.0 - 2021-12-31
-------------------

This release fixes :issue:`3133` and :issue:`3144`, where attempting
to generate Pandas series of lists or sets would fail with confusing
errors if you did not specify ``dtype=object``.

.. _v6.33.0:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/extra/pandas/impl.py
Expand Up @@ -84,7 +84,7 @@ def elements_and_dtype(elements, dtype, source=None):
note_deprecation(
f"Passed dtype={dtype!r} is not a valid Pandas dtype. We'll treat it as "
"dtype=object for now, but this will be an error in a future version.",
since="RELEASEDAY",
since="2021-12-31",
has_codemod=False,
)

Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
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, 33, 0)
__version_info__ = (6, 34, 0)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit f91adfe

Please sign in to comment.