From 90300de329e0988730fce997b901150fe50fd062 Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Sat, 17 Mar 2018 07:50:13 +0000 Subject: [PATCH] BLD: Show gcc version Show gcc and cland version --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5fb593cff..b11f5b730 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,6 +53,8 @@ before_install: - export BUILD_DIR=${PWD} - if [[ ${DOCBUILD} == true ]]; then pip install sphinx sphinx_rtd_theme guzzle_sphinx_theme ipython doctr -q; fi - if [[ ${DOCBUILD} == true ]]; then conda install numba pandas matplotlib --quiet; fi + - gcc --version || true + - clang --version || true install: - python setup.py develop