Skip to content

Commit 460cb11

Browse files
committed
fix issue when installing wheels
1 parent 637b0a5 commit 460cb11

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

ci/utilities/install_wheels_locally.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,14 @@
1919
# using the Windows version of `find` on Windows.
2020
WHEELS=( $(/usr/bin/find "$JAXCI_OUTPUT_DIR/" -type f \( -name "*jaxlib*" -o -name "*jax*cuda*pjrt*" -o -name "*jax*cuda*plugin*" \)) )
2121

22-
echo $WHEELS
2322
if [[ -z "$WHEELS" ]]; then
2423
echo "ERROR: No wheels found under $JAXCI_OUTPUT_DIR"
2524
exit 1
2625
fi
2726

28-
for wheel in "${WHEELS[@]}"; do
29-
echo "Installing $(basename $wheel) ..."
30-
"$JAXCI_PYTHON" -m pip install "$wheel"
31-
done
27+
echo "Installing the following wheels:"
28+
echo "${WHEELS[@]}"
29+
"$JAXCI_PYTHON" -m pip install "${WHEELS[@]}"
3230

3331
echo "Installing the JAX package in editable mode at the current commit..."
3432
# Install JAX package at the current commit.

0 commit comments

Comments
 (0)