Skip to content

Commit

Permalink
CI tell travis-ci to use gcc 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeurer committed Mar 10, 2016
1 parent 96d4a37 commit 0149436
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ python:
- "2.7"
- "3.4"


cache:
directories:
- $HOME/.cache/pip
Expand All @@ -17,11 +16,16 @@ before_cache:
# command to install dependencies
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libatlas-dev
- liblapack-dev
- libatlas-base-dev
- gfortran
packages:
- gcc-4.8
- g++-4.8

before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
Expand All @@ -30,6 +34,7 @@ before_install:
- conda update --yes conda

install:
- export CXX="g++-4.8" CC="gcc-4.8"
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy=1.9 scipy=0.16 nose scikit-learn=0.16.1 Cython pandas
- pip install mock --no-deps
- pip install lockfile==0.10.2 --no-deps
Expand Down

0 comments on commit 0149436

Please sign in to comment.