Skip to content

Commit 44c61bb

Browse files
okakarpaethanwee1
authored andcommitted
[AUTOGENERATED] [rocm6.5_internal_testing] Remove --no-index and --no-deps flags (#2121)
Cherry-pick of #2103 Co-authored-by: Ethan Wee <[email protected]> (cherry picked from commit 1dea6e8)
1 parent c1c3a91 commit 44c61bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/pytorch/common_utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ function pip_install_whl() {
6767
# Loop through each path and install individually
6868
for path in "${paths[@]}"; do
6969
echo "Installing $path"
70-
python3 -mpip install --no-index --no-deps "$path"
70+
python3 -mpip install "$path"
7171
done
7272
else
7373
# Loop through each argument and install individually
7474
for path in "${args[@]}"; do
7575
echo "Installing $path"
76-
python3 -mpip install --no-index --no-deps "$path"
76+
python3 -mpip install "$path"
7777
done
7878
fi
7979
}

0 commit comments

Comments
 (0)