From 0c42f1a9afd08c41156924c0a4b877646b80bc66 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 21:44:45 +0200 Subject: [PATCH] another attempt to include python 2.7 and 3.5 --- .travis.yml | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 825500f..fd7b9a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,36 @@ -language: python +language: cpp sudo: false -python: - - 2.7 - - 3.5 - matrix: include: - os: linux + python: 2.7 + compiler: gcc + env: SOURCES=ubuntu-toolchain-r-test + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + # compilers + - g++ + - gfortran + - cmake + # math libraries + - libblas-dev + - liblapack-dev + - libatlas-base-dev + # mpi + - openmpi-bin + - libopenmpi-dev + # python library, development version + - libpython2.7 + # boost + - libboost-all-dev + + - os: linux + python: 3.5 compiler: gcc env: SOURCES=ubuntu-toolchain-r-test addons: