diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-09-28 20:59:11 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-09-28 21:08:29 +0300 |
commit | 1c97858dd693c8a6831d065ead236fe9ae8fd791 (patch) | |
tree | a0b3c4287993d0c8473a75b2b8d4f9e149ab0d7f /contrib/python/hypothesis | |
parent | 55c711d26048691eba675e53fb4a4ee7d7955b4a (diff) | |
download | ydb-1c97858dd693c8a6831d065ead236fe9ae8fd791.tar.gz |
Intermediate changes
commit_hash:10679e13fc6558743430c2ef4a4bf312553fc7e8
Diffstat (limited to 'contrib/python/hypothesis')
4 files changed, 3 insertions, 4 deletions
diff --git a/contrib/python/hypothesis/py3/.dist-info/METADATA b/contrib/python/hypothesis/py3/.dist-info/METADATA index b78a2eeab3..ba6c935a9d 100644 --- a/contrib/python/hypothesis/py3/.dist-info/METADATA +++ b/contrib/python/hypothesis/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: hypothesis -Version: 6.112.0 +Version: 6.112.1 Summary: A library for property-based testing Home-page: https://hypothesis.works Author: David R. MacIver and Zac Hatfield-Dodds diff --git a/contrib/python/hypothesis/py3/hypothesis/extra/numpy.py b/contrib/python/hypothesis/py3/hypothesis/extra/numpy.py index de0940c97d..b6e75d3efa 100644 --- a/contrib/python/hypothesis/py3/hypothesis/extra/numpy.py +++ b/contrib/python/hypothesis/py3/hypothesis/extra/numpy.py @@ -1305,7 +1305,6 @@ def _dtype_from_args(args): else: # Two args: ndarray[shape, type], NDArray[*] assert len(args) == 2 - assert args[0] is Any dtype = _unpack_dtype(args[1]) if dtype is Any: diff --git a/contrib/python/hypothesis/py3/hypothesis/version.py b/contrib/python/hypothesis/py3/hypothesis/version.py index 2c69dd8977..6440a1854a 100644 --- a/contrib/python/hypothesis/py3/hypothesis/version.py +++ b/contrib/python/hypothesis/py3/hypothesis/version.py @@ -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, 112, 0) +__version_info__ = (6, 112, 1) __version__ = ".".join(map(str, __version_info__)) diff --git a/contrib/python/hypothesis/py3/ya.make b/contrib/python/hypothesis/py3/ya.make index ce520eaa5f..cc05026788 100644 --- a/contrib/python/hypothesis/py3/ya.make +++ b/contrib/python/hypothesis/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(6.112.0) +VERSION(6.112.1) LICENSE(MPL-2.0) |