https://github.com/mikgroup/sigpy
Raw File
Tip revision: bc699976cea4c8548061b37b62d527812a46e461 authored by jonbmartin on 31 May 2022, 23:45:20 UTC
fix additional deprecated aliases
Tip revision: bc69997
.travis.yml
language: python
python:
  - "3.6"
  - "3.7"
  - "3.8"

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

script:
  - bash run_tests.sh

after_success:
  - codecov
back to top