8000 MAINT temporary disable MKL in Travis · kernc/scikit-learn@2d19895 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2d19895

Browse files
committed
MAINT temporary disable MKL in Travis
to have master green on Travis until we fix scikit-learn#6279. Install nomkl when INSTALL_MKL is not true. DISTRIB=scipy-dev-wheels uses allow_failures.
1 parent 03a1d45 commit 2d19895

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,16 @@ env:
3939
NUMPY_VERSION="1.6.2" SCIPY_VERSION="0.11.0" CYTHON_VERSION="0.21"
4040
CACHED_BUILD_DIR="$HOME/sklearn_build_oldest"
4141
# This environment tests the newest supported anaconda env
42-
- DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="true"
42+
- DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="false"
4343
NUMPY_VERSION="1.10.2" SCIPY_VERSION="0.16.1" CYTHON_VERSION="0.23.4"
4444
CACHED_BUILD_DIR="$HOME/sklearn_build_latest"
4545

4646
matrix:
47+
allow_failures:
48+
# allow_failures seems to be keyed on the python version
49+
# We are using this to allow failures for DISTRIB=scipy-dev-wheels
50+
- python: 3.5
51+
4752
include:
4853
# This environment tests scikit-learn against numpy and scipy master
4954
# installed from their CI wheels in a virtualenv with the Python

build_tools/travis/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
5757
else
5858
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
5959
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION \
60-
libgfortran
60+
libgfortran nomkl
6161
fi
6262
source activate testenv
6363

0 commit comments

Comments
 (0)
0