From a920da7e5dbf2746c2b35252b00ba4aa9a905bec Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Thu, 16 Jun 2016 20:08:07 +0200 Subject: [PATCH] Manually install of numpy and scipy --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8e82b26..19666a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,9 @@ addons: env: - PGUSER=postgres -before_script: make install +before_script: + - pip install numpy==1.11.0 + - pip install scipy==0.17.1 + - make install script: make test