https://github.com/AndreasHeger/gat
Raw File
Tip revision: f380817fef77f0e2207a587f04a5ac4243f14fba authored by Andreas Heger on 14 June 2019, 20:10:28 UTC
{AH} fix missing contigs, closes #10
Tip revision: f380817
.travis.yml

language: python

python:
  - "2.7"
  - "3.5"
  - "3.6"

sudo: false

addons:
  apt:
    packages:
      - python-numpy
      - python-matplotlib
      - python-scipy
      - python-nose
      - cython
      - liblapack-dev
      - libblas-dev
      - libatlas-dev
      - gfortran

script:
  - python setup.py develop && nosetests -v test/test_*.py

notifications:
  email:
    - andreas.heger@gmail.com
back to top