https://github.com/laszukdawid/PyEMD
Tip revision: 7ab9f61d569e22a4957d5537647fd6522fb7b3e1 authored by Dawid Laszuk on 12 August 2021, 21:41:57 UTC
Bump to v1.0.0
Bump to v1.0.0
Tip revision: 7ab9f61
.travis.yml
os: linux
dist: xenial
language: python
python:
- 3.5
- 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
