File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1523,9 +1523,8 @@ function pip_install {
1523
1523
http_proxy=$http_proxy \
1524
1524
https_proxy=$https_proxy \
1525
1525
no_proxy=$no_proxy \
1526
- $cmd_pip install --build=${pip_build_tmp} \
1527
- $pip_mirror_opt $@ \
1528
- && $sudo_pip rm -rf ${pip_build_tmp}
1526
+ $cmd_pip install \
1527
+ $pip_mirror_opt $@
1529
1528
1530
1529
if [[ "$INSTALL_TESTONLY_PACKAGES" == "True" ]]; then
1531
1530
local test_req="$@/test-requirements.txt"
@@ -1534,9 +1533,8 @@ function pip_install {
1534
1533
http_proxy=$http_proxy \
1535
1534
https_proxy=$https_proxy \
1536
1535
no_proxy=$no_proxy \
1537
- $cmd_pip install --build=${pip_build_tmp} \
1538
- $pip_mirror_opt -r $test_req \
1539
- && $sudo_pip rm -rf ${pip_build_tmp}
1536
+ $cmd_pip install \
1537
+ $pip_mirror_opt -r $test_req
1540
1538
fi
1541
1539
fi
1542
1540
}
You can’t perform that action at this time.
0 commit comments