This is an automated email from the ASF dual-hosted git repository.
xtsong pushed a commit to branch release-0.2
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/release-0.2 by this push:
new 1aab74dc [hotfix] Explicitly limit version for onnxruntime for python
3.10. (#520)
1aab74dc is described below
commit 1aab74dc34a3e2aaeab231c11870a863844cf374
Author: Wenjin Xie <[email protected]>
AuthorDate: Fri Feb 6 16:33:48 2026 +0800
[hotfix] Explicitly limit version for onnxruntime for python 3.10. (#520)
---
python/pyproject.toml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/python/pyproject.toml b/python/pyproject.toml
index f67d4f98..4e45c545 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -54,6 +54,8 @@ dependencies = [
"openai>=1.66.3",
"anthropic>=0.64.0",
"chromadb==1.0.21",
+ "onnxruntime<1.24.1;python_version<'3.11'",
+ "onnxruntime>=1.24.1;python_version>='3.11'",
]
[tool.setuptools]