SABS-R3-projects / PKPD

A simple, graphical pharmacokinetic-pharmacodynamic modelling solution
GNU General Public License v3.0
18 stars 2 forks source link

Travis install #4

Closed MichaelClerx closed 4 years ago

MichaelClerx commented 4 years ago

Hi guys!

Few quick comments after looking at your travis config

  1. There's a lot of PINTS constants that you don't need (these lines can all go, I think)
  2. You have a very big requirements.txt file with "pinned" (version-specific) dependencies, not sure you need this!
  3. 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
  4. There's no setup.py file, so pip install . won't do anything
simonmarchant commented 4 years ago

Thanks @MichaelClerx , we think we have it working now and this was useful, so thankyou!