From b4a77ac7f4ed9c639a28468133b22d9b03c69bf7 Mon Sep 17 00:00:00 2001 From: Andrew Reusch Date: Thu, 16 Jun 2022 15:58:42 -0700 Subject: [PATCH] Fix CI break due to concurrent merge. (#11753) * #11470 and #11741. --- docker/install/ubuntu_install_python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_python.sh b/docker/install/ubuntu_install_python.sh index eff7504d4771..ec50682c1454 100755 --- a/docker/install/ubuntu_install_python.sh +++ b/docker/install/ubuntu_install_python.sh @@ -36,7 +36,7 @@ apt-install-and-clear -y python-pip python-dev python3.6 python3.6-dev rm -f /usr/bin/python3 && ln -s /usr/bin/python3.6 /usr/bin/python3 # python 3.7 -apt-get install -y python3.7 +apt-install-and-clear -y python3.7 # Install pip wget -q https://bootstrap.pypa.io/get-pip.py && python3.7 get-pip.py