[matplotlib-devel] Strange Error on Travis 2.6 build (can't find cbook)

2013-12-02 Thread Paul Hobson
Hey folks, I've got a branch going to refactor the boxplot function and address several issues that have cropped up lately. Currently, everything on my feature branch is working well except for Travis' Python 2.6 build. Here's a link directly the error on the build: https://travis-ci.org/phobson

Re: [matplotlib-devel] Strange Error on Travis 2.6 build (can't find cbook)

2013-12-02 Thread Thomas A Caswell
That tends to mean you have something that fails to import (raises an exception on import that get silently suppressed) so I would guess something in there is non 2.6 compatible, but don't know enough to tell you what. On Mon, Dec 2, 2013 at 1:00 PM, Paul Hobson wrote: > Hey folks, > > I've got a

Re: [matplotlib-devel] Strange Error on Travis 2.6 build (can't find cbook)

2013-12-02 Thread Paul Hobson
Thanks, Thomas. That sounds like enough to get me going. -paul On Mon, Dec 2, 2013 at 1:48 PM, Thomas A Caswell wrote: > That tends to mean you have something that fails to import (raises an > exception on import that get silently suppressed) so I would guess > something in there is non 2.6 comp