We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532bc85 commit 0ebc884Copy full SHA for 0ebc884
tools/test-manylinux.sh
@@ -39,7 +39,10 @@ function setup_centos {
39
function setup_ubuntu {
40
# Ubuntu container setup
41
apt-get update
42
- apt-get install -y python python3 python3-distutils curl
+ apt-get install -y python python3 curl
43
+ # python3-distutils is required on Ubuntu 18.04 and later but does
44
+ # not exist on 14.04.
45
+ apt-get install -y python3-distutils || true
46
}
47
48
0 commit comments