https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: d0620004106add6a80fd78e61150e7782b7e7a11 authored by Dawid Laszuk on 28 December 2021, 21:23:59 UTC
Loose NumPy and SciPy top version (#109). Add Changelog. (#110)
Tip revision: d062000
.travis.yml
os: linux
dist: xenial
language: python
python:
  - 3.6
  - 3.7
  - 3.8
# command to run tests
before_install:
  - pip install --upgrade pip setuptools wheel
install:
  - pip install --only-binary=numpy,scipy numpy scipy
  - pip install -r requirements.txt
  - pip install -r requirements-extra.txt
  - pip install codecov
script:
  - python -m PyEMD.tests.test_all
  - coverage run PyEMD/tests/test_all.py
after_success:
  - codecov
back to top