Fix Travis GCC 7 Python 3.6.6 (#1436)

Add missing python3 distutils on Debian "buster".
This commit is contained in:
Axel Huebl 2018-06-21 16:31:46 +02:00 committed by Jason Rhinelander
parent 58e551cc73
commit 4b84bad7ef

View File

@ -108,7 +108,7 @@ before_install:
export CXX=g++-$GCC CC=gcc-$GCC
fi
if [ "$GCC" = "6" ]; then DOCKER=${ARCH:+$ARCH/}debian:stretch
elif [ "$GCC" = "7" ]; then DOCKER=debian:buster EXTRA_PACKAGES+=" catch" DOWNLOAD_CATCH=OFF
elif [ "$GCC" = "7" ]; then DOCKER=debian:buster EXTRA_PACKAGES+=" catch python3-distutils" DOWNLOAD_CATCH=OFF
fi
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
export CXX=clang++ CC=clang;