https://github.com/svohr/mixemt
Raw File
Tip revision: be33e2d3db69a1c5c64f68041f54f9f781deb769 authored by Sam Vohr on 06 October 2023, 00:46:11 UTC
Fix index error for report top proportions (#24)
Tip revision: be33e2d
.travis.yml
language: python

notifications:
  email: false

python:
  - "3.6"

os:
  - linux

# command to install dependencies
install:
  - "pip install --upgrade pip setuptools wheel"
  - "pip install --only-binary=numpy,scipy numpy scipy"
  - "pip install ."

# command to run tests
script: py.test
back to top