gemini-code-assist[bot] commented on code in PR #600:
URL: https://github.com/apache/tvm-ffi/pull/600#discussion_r3319959415


##########
.github/actions/build-wheel-for-publish/action.yml:
##########
@@ -110,5 +110,5 @@ runs:
       if: ${{ inputs.build_sdist == 'true' }}
       shell: bash
       run: |
-        pipx run build --sdist --outdir dist .
-        pipx run twine check dist/*
+        uv tool run --from build pyproject-build --sdist --outdir dist .
+        uv tool run --from twine twine check dist/*

Review Comment:
   ![medium](https://www.gstatic.com/codereviewagent/medium-priority.svg)
   
   The `--from twine` option is redundant because the executable name (`twine`) 
matches the package name (`twine`). Simplifying the command makes it cleaner 
and more idiomatic.
   
   ```yaml
           uv tool run twine check dist/*
   ```



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