Hello, For a tiny package <https://github.com/davidavdav/CHull.jl> that depends on PyCall and python's scipy.spatial I am trying to engineer a `.travis.yml`, but I get an error in travis <https://travis-ci.org/davidavdav/CHull.jl/jobs/165748900> that `spatial.ConvexHull` is not known. This is the travis file:
language: julia julia: - 0.4 - 0.5 - nightly before_install: - sudo apt-get -qq update - sudo apt-get install -y python-scipy I did not go for the `sudo: false` option because I figured I needed the `apt-get install`. I've tried to reproduce this in docker with the `julia` image, but there everything works fine. Does anybody know how to debug .travis.yml files? Thanks, ---david
