https://github.com/SiLab-Bonn/pyLandau
Raw File
Tip revision: acc06d40f9b93e954513cfb52192aea11daa712e authored by DavidLP on 30 June 2016, 15:36:40 UTC
PRJ: due to API changes increase to 2.X
Tip revision: acc06d4
.travis.yml
language: python

python:
  - 2.7
  - 3.3
  - 3.4
  - 3.5

sudo: false

cache:
  directories:
    - $HOME/.pip-cache/

addons:
  apt:
    packages:
    - gfortran
    - libblas-dev
    - liblapack-dev
    
notifications:
  email:
    - pohl@physik.uni-bonn.de

install:
  - pip install --upgrade pip
  - pip install -r requirements.txt --cache-dir $HOME/.pip-cache
  - python setup.py develop

# Run test
script: nosetests
back to top