This is an automated email from the ASF dual-hosted git repository.
vterentev pushed a commit to branch fix-python-ml-workflows
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-python-ml-workflows by
this push:
new 460431b59d5 pin setuptools<82.0.0
460431b59d5 is described below
commit 460431b59d5d6b0914fbd11da4fe0cc136e3fc32
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Fri Feb 27 16:13:30 2026 +0400
pin setuptools<82.0.0
---
sdks/python/setup.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index dbb1dd68f17..e0d602c9603 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -160,7 +160,10 @@ dataframe_dependency = [
'pandas>=1.4.3,!=1.5.0,!=1.5.1,<2.3',
]
-milvus_dependency = ['pymilvus>=2.5.10,<3.0.0']
+milvus_dependency = [
+ 'setuptools<82.0.0'
+ 'pymilvus>=2.5.10,<3.0.0'
+]
ml_base = [
'embeddings',