Closed kmike closed 9 years ago
Tests pass for me locally using tox, but on Travis it fails with the same error as described here: https://github.com/conda/conda/issues/444
Do you also use Linux locally?
No, locally it is OS X.
Yes, I think this error is specific to Linux.
Thx, will have a look over the weekend.
The problem with tests was that when nosetests
command run from the repo root, tests import seqlearn from the checkout instead of using installed seqlearn, and this failed because checkout doesn't have the extensions built.
Most likely tox tests will fail on linux with the current implementation.
I haven't checked Python 3 compatibility in great details; in this PR changes are made to make tests pass.
I finally had some time to look at this and I can't get it to work on my Linux box. I don't like maintaining stuff that I can't even run :(
What about dropping tox.ini?
or just making tox use pip - it will be slow, but it would work
install-deps.py hack is not needed for travis, so it can also be dropped
I've cherry-picked a7cc35efbfd627276026f97564c5c4a5b7e4d121 into master, without Travis tests. Maybe we should try installing NumPy and SciPy with wheels instead? I haven't toyed with those yet, but they look promising.
There are no official wheels for numpy and scipy for major OSes, so we'd need to find a provider or build them ourselves (and put somewhere?). Conda already provides binary packages for all OSes, and they are maintained, that's why conda is used in this PR, and that's why I tried to get it work with tox (without too much success, only OS X works so far). This was my first experience with conda. I'd prefer to use wheels, but I haven't found a straightforward way to do that (that said, I haven't tried too hard).
TODO: