Skip to content

Commit

Permalink
reduce pip verbosity in wheel builds (#4651)
Browse files Browse the repository at this point in the history
Proposes reducing the verbosity of `pip wheel` called in wheel builds from `-vvv` to `-v`.

This eliminates the 1000s of lines like this in CI logs:

![image](https://github.com/user-attachments/assets/4dc2b024-c9f1-4618-9c94-8166c6aa9a13)

to hopefully make it easier to view those logs interactively

Authors:
  - James Lamb (https://github.com/jameslamb)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #4651
  • Loading branch information
jameslamb authored Sep 27, 2024
1 parent 36c190a commit 54b03da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cd "${package_dir}"

python -m pip wheel \
-w dist \
-vvv \
-v \
--no-deps \
--disable-pip-version-check \
--extra-index-url https://pypi.nvidia.com \
Expand Down

0 comments on commit 54b03da

Please sign in to comment.