Few quick comments after looking at your travis config
There's a lot of PINTS constants that you don't need (these lines can all go, I think)
You have a very big requirements.txt file with "pinned" (version-specific) dependencies, not sure you need this!
PINTS isn't pip installable yet, so you'll need to do something more complicated, e.g. adding this to your travis before_install bit: - pip install -e git://github.com/pints-team/pints.git#egg=pints
There's no setup.py file, so pip install . won't do anything
Hi guys!
Few quick comments after looking at your travis config
requirements.txt
file with "pinned" (version-specific) dependencies, not sure you need this!before_install
bit:- pip install -e git://github.com/pints-team/pints.git#egg=pints
setup.py
file, sopip install .
won't do anything