From f1cfacd6e48df19b2015f390c9972e913aaaf7da Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 19 Oct 2012 15:14:27 -0400 Subject: [PATCH] Adds gfortran to Travis CI env so that it's available to numpy. Also drops ipython (which is used for desktop development) and nose (which is installed by default by Travis CI) from list of dev packages to be installed during a Travis build. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 03e43582..9b33ddcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,8 @@ language: python python: - "2.7" install: - - pip install -r etc/requirements_dev.txt + - apt-get install gfortran + - cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose | xargs pip install - etc/ordered_pip.sh etc/requirements.txt before_script: - "flake8 zipline tests"