Copilot commented on code in PR #3074:
URL: https://github.com/apache/iceberg-rust/pull/3074#discussion_r3861864831


##########
.github/workflows/bindings_python_ci.yml:
##########
@@ -56,7 +56,7 @@ jobs:
           enable-cache: true
       - name: Install tools
         run: |
-          uv tool install ruff
+          uv tool install [email protected]

Review Comment:
   `uv tool install` expects a PEP 440 requirement spec; `[email protected]` is 
typically interpreted as `name @ url` (PEP 508) and will fail because `0.15.22` 
is not a URL. Use a PEP 440 version pin (e.g., `ruff==0.15.22`) so CI reliably 
installs the intended Ruff version.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to