Travis-CI changed from a Ubuntu precise image, which reached the EOL, to the Ubuntu Trusty, the new LTS image. See https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
This change caused some breakages in the testing framework b/c it relied on packages from apt that are no longer available in the new image. The options are:
- pin to the older image for as long as Travis-CI allows it;
- find the equivalent packages in the new image;
- figure out what is really needed and find conda packages from them.
I am looking into the problem and we can probably do 1 right now while we choose between 2 and 3 as a long term solution. (I prefer 3 BTW.)
Travis-CI changed from a
Ubuntu preciseimage, which reached the EOL, to theUbuntu Trusty, the new LTS image. See https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-comingThis change caused some breakages in the testing framework b/c it relied on packages from
aptthat are no longer available in the new image. The options are:I am looking into the problem and we can probably do
1right now while we choose between2and3as a long term solution. (I prefer3BTW.)