We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db487d commit 7d92afeCopy full SHA for 7d92afe
ci/scripts/github/build_wheel.sh
@@ -76,6 +76,10 @@ for whl in "${MOVED_WHEELS[@]}"; do
76
UV_PIP_OUT=$(uv pip install -q --prerelease=allow --find-links "${WHEELS_BASE_DIR}" "${whl}" 2>&1)
77
INSTALL_RESULT=$?
78
79
+ # Report the packages in the environment regardless of install success
80
+ rapids-logger "Installed wheel ${whl} with Python ${pyver}, pip install exit code ${INSTALL_RESULT}, installed packages:"
81
+ uv pip list
82
+
83
if [[ ${INSTALL_RESULT} -ne 0 ]]; then
84
rapids-logger "Error, failed to install wheel ${whl} with Python ${pyver}"
85
echo "${UV_PIP_OUT}"
0 commit comments