https://github.com/mikgroup/sigpy
Raw File
Tip revision: 63348600f1dc8fb361e112d0be6fa14d69bac22c authored by Frank Ong on 04 March 2019, 00:44:51 UTC
Bump version: 0.1.0 → 0.1.0
Tip revision: 6334860
.travis.yml
language: python
python:
  - "3.5"
  - "3.6"

install:
  - pip install -r requirements.txt
  - pip install codecov flake8 sphinx sphinx_rtd_theme matplotlib

script:
  - bash run_tests.sh

after_success:
  - codecov
back to top