You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2022/06/16 22:58:47 UTC

[tvm] branch main updated: Fix CI break due to concurrent merge. (#11753)

This is an automated email from the ASF dual-hosted git repository.

areusch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new b4a77ac7f4 Fix CI break due to concurrent merge. (#11753)
b4a77ac7f4 is described below

commit b4a77ac7f4ed9c639a28468133b22d9b03c69bf7
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu Jun 16 15:58:42 2022 -0700

    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 eff7504d47..ec50682c14 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