This is an automated email from the ASF dual-hosted git repository.
tvalentyn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new bb8373f1abc Enforce hypothesis version upper bound (#36952)
bb8373f1abc is described below
commit bb8373f1abca192fca44055848e933d0166a4813
Author: Shunping Huang <[email protected]>
AuthorDate: Mon Dec 1 16:50:54 2025 -0500
Enforce hypothesis version upper bound (#36952)
---
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 ef58b4f9c76..96ba006a259 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -453,7 +453,9 @@ if __name__ == '__main__':
'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',