wenjin272 commented on code in PR #979: URL: https://github.com/apache/flink-agents/pull/979#discussion_r3742776726
########## tools/build.sh: ########## @@ -101,7 +101,7 @@ if $build_python; then # build python cd python rm -rf dist/ # Clean old build artifacts before building - pip install uv==0.11.0 + python3 -m pip install uv==0.11.0 Review Comment: Thanks for the detailed explanation. I think the current scope and rules are reasonable: use `python3 -m` when the tool is installed through `python3 -m pip`, while keeping direct `uv` invocations when its availability is verified via `command -v`. Handling `e2e.sh` separately in #982 also makes sense. This addresses my concern. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
