larsmans / seqlearn

Sequence learning toolkit for Python
http://larsmans.github.io/seqlearn/
MIT License
688 stars 102 forks source link

apt-get (not pip) install SciPy #18

Closed larsmans closed 9 years ago

larsmans commented 9 years ago

Hopefully this will prevent timeouts on Travis.

kmike commented 9 years ago

I'm now using this setup to install numpy&scipy for Python 2.x and 3.x on Travis: https://github.com/TeamHG-Memex/Formasaurus/blob/master/.travis.yml. scipy is still installed by pip (it is in install_requires); apt-get install scipy ensures dependencies are satisfied. It is kind of slow the first time (and with no output because of travis_wait), but subsequent runs are fast.

larsmans commented 9 years ago

Thanks, I stole some of that for my second version. I'm now trying Travis's Trusty beta to get a new enough SciPy.

kmike commented 9 years ago

wow, they finally made Trusty beta, didn't know that - thanks!

larsmans commented 9 years ago

Not that it matters, it doesn't seem to pick up the right NumPy for some reason...

larsmans commented 9 years ago

Ok, got it right, pushed to master.

kmike commented 9 years ago

:+1: