@@ -6,13 +6,7 @@ language: python
6
6
# Pre-install packages for the ubuntu distribution
7
7
cache :
8
8
apt : true
9
- # We use three different cache directory
10
- # to work around a Travis bug with multi-platform cache
11
9
directories :
12
- - $HOME/sklearn_build_ubuntu
13
- - $HOME/sklearn_build_oldest
14
- - $HOME/sklearn_build_latest
15
- - $HOME/sklearn_build_numpy_dev
16
10
- $HOME/.cache/pip
17
11
- $HOME/download
18
12
addons :
33
27
# This environment tests that scikit-learn can be built against
34
28
# versions of numpy, scipy with ATLAS that comes with Ubuntu Precise 12.04
35
29
- DISTRIB="ubuntu" PYTHON_VERSION="2.7" CYTHON_VERSION="0.23.4"
36
- CACHED_BUILD_DIR="$HOME/sklearn_build_ubuntu" COVERAGE=true
30
+ COVERAGE=true
37
31
# This environment tests the oldest supported anaconda env
38
32
- DISTRIB="conda" PYTHON_VERSION="2.6" INSTALL_MKL="false"
39
33
NUMPY_VERSION="1.6.2" SCIPY_VERSION="0.11.0" CYTHON_VERSION="0.21"
40
- CACHED_BUILD_DIR="$HOME/sklearn_build_oldest"
41
34
# This environment tests the newest supported anaconda env
42
35
# It also runs tests requiring Pandas.
43
36
- DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="true"
44
37
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" PANDAS_VERSION="0.18.0"
45
- CYTHON_VERSION="0.23.4" CACHED_BUILD_DIR="$HOME/sklearn_build_latest"
38
+ CYTHON_VERSION="0.23.4"
46
39
# flake8 linting on diff wrt common ancestor with upstream/master
47
40
- RUN_FLAKE8="true" SKIP_TESTS="true"
48
41
DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="true"
49
42
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.4"
50
- CACHED_BUILD_DIR="$HOME/dummy"
51
43
52
44
53
45
matrix :
@@ -66,7 +58,6 @@ matrix:
66
58
# the before_install step with and addons/apt/packages declaration.
67
59
- python : 3.5
68
60
env : DISTRIB="scipy-dev-wheels"
69
- CACHED_BUILD_DIR="$HOME/sklearn_build_numpy_dev"
70
61
sudo : True
71
62
before_install : sudo apt-get install -yqq libatlas3gf-base libatlas-dev
72
63
0 commit comments