aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-09-09 00:01:29 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-09-09 00:09:57 +0300
commitc008a8208b6b86684b208b98fbffb96567cd9885 (patch)
tree4b8ecb5b6995b431dbc9dded94b3470270a5a251 /contrib
parent88fe3c9bf2a36874fc9896b1b4b9d955f633a961 (diff)
downloadydb-c008a8208b6b86684b208b98fbffb96567cd9885.tar.gz
Intermediate changes
Diffstat (limited to 'contrib')
-rw-r--r--contrib/python/hypothesis/py3/.dist-info/METADATA10
-rw-r--r--contrib/python/hypothesis/py3/hypothesis/internal/conjecture/data.py8
-rw-r--r--contrib/python/hypothesis/py3/hypothesis/internal/conjecture/engine.py2
-rw-r--r--contrib/python/hypothesis/py3/hypothesis/version.py2
-rw-r--r--contrib/python/hypothesis/py3/ya.make2
5 files changed, 8 insertions, 16 deletions
diff --git a/contrib/python/hypothesis/py3/.dist-info/METADATA b/contrib/python/hypothesis/py3/.dist-info/METADATA
index 3e743f0029..d1e09fb0ef 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.111.1
+Version: 6.111.2
Summary: A library for property-based testing
Home-page: https://hypothesis.works
Author: David R. MacIver and Zac Hatfield-Dodds
@@ -41,10 +41,10 @@ Requires-Dist: exceptiongroup>=1.0.0; python_version < "3.11"
Provides-Extra: all
Requires-Dist: black>=19.10b0; extra == "all"
Requires-Dist: click>=7.0; extra == "all"
-Requires-Dist: crosshair-tool>=0.0.66; extra == "all"
+Requires-Dist: crosshair-tool>=0.0.70; extra == "all"
Requires-Dist: django>=3.2; extra == "all"
Requires-Dist: dpcontracts>=0.4; extra == "all"
-Requires-Dist: hypothesis-crosshair>=0.0.12; extra == "all"
+Requires-Dist: hypothesis-crosshair>=0.0.13; extra == "all"
Requires-Dist: lark>=0.10.1; extra == "all"
Requires-Dist: libcst>=0.3.16; extra == "all"
Requires-Dist: numpy>=1.17.3; extra == "all"
@@ -63,8 +63,8 @@ Requires-Dist: rich>=9.0.0; extra == "cli"
Provides-Extra: codemods
Requires-Dist: libcst>=0.3.16; extra == "codemods"
Provides-Extra: crosshair
-Requires-Dist: hypothesis-crosshair>=0.0.12; extra == "crosshair"
-Requires-Dist: crosshair-tool>=0.0.66; extra == "crosshair"
+Requires-Dist: hypothesis-crosshair>=0.0.13; extra == "crosshair"
+Requires-Dist: crosshair-tool>=0.0.70; extra == "crosshair"
Provides-Extra: dateutil
Requires-Dist: python-dateutil>=1.4; extra == "dateutil"
Provides-Extra: django
diff --git a/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/data.py b/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/data.py
index cc1f71da96..18f3bd9b8a 100644
--- a/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/data.py
+++ b/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/data.py
@@ -1935,14 +1935,6 @@ AVAILABLE_PROVIDERS = {
}
-# eventually we'll want to expose this publicly, but for now it lives as psuedo-internal.
-def realize(value: object) -> object:
- from hypothesis.control import current_build_context
-
- context = current_build_context()
- return context.data.provider.realize(value)
-
-
class ConjectureData:
@classmethod
def for_buffer(
diff --git a/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/engine.py b/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/engine.py
index ff330cf59e..7126918736 100644
--- a/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/engine.py
+++ b/contrib/python/hypothesis/py3/hypothesis/internal/conjecture/engine.py
@@ -1112,7 +1112,7 @@ class ConjectureRunner:
(start1, end1), (start2, end2) = self.random.sample(sorted(group), 2)
if (start1 <= start2 <= end2 <= end1) or (
start2 <= start1 <= end1 <= end2
- ):
+ ): # pragma: no cover # flaky on conjecture-cover tests
# one example entirely contains the other. give up.
# TODO use more intelligent mutation for containment, like
# replacing child with parent or vice versa. Would allow for
diff --git a/contrib/python/hypothesis/py3/hypothesis/version.py b/contrib/python/hypothesis/py3/hypothesis/version.py
index 7b68749f4f..af1b866e64 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, 111, 1)
+__version_info__ = (6, 111, 2)
__version__ = ".".join(map(str, __version_info__))
diff --git a/contrib/python/hypothesis/py3/ya.make b/contrib/python/hypothesis/py3/ya.make
index d00e9b6081..f7183e57f1 100644
--- a/contrib/python/hypothesis/py3/ya.make
+++ b/contrib/python/hypothesis/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(6.111.1)
+VERSION(6.111.2)
LICENSE(MPL-2.0)