From 88b919e2a7e80221ea17fe9d52ee8fef6b4729bc Mon Sep 17 00:00:00 2001 From: Shunping Huang Date: Mon, 1 Dec 2025 14:13:56 -0500 Subject: [PATCH] Enforce hypothesis version upper bound --- sdks/python/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index ef58b4f9c760..96ba006a259c 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -453,7 +453,9 @@ def get_portability_package_data(): 'psycopg2-binary>=2.8.5,<3.0', 'testcontainers[mysql,kafka,milvus]>=4.0.0,<5.0.0', 'cryptography>=41.0.2', - 'hypothesis>5.0.0,<7.0.0', + # TODO(https://github.com/apache/beam/issues/36951): need to + # further investigate the cause + 'hypothesis>5.0.0,<6.148.4', 'virtualenv-clone>=0.5,<1.0', 'python-tds>=1.16.1', 'sqlalchemy-pytds>=1.0.2',