Potential Archive Issue with Python 3.5

Hi there,

I noticed there is a dependency installation error with Python 3.5 and Python 3.5 Dev since the image is changed to “archive: https://language-archives.travis-ci.com/python/binaries/ubuntu/14.04/x86_64/python-3.5.tar.bz2

The repository has no change but starts showing error on installing “llvmlite” library.

I compared two logs and noticed that the underlying image is changed, and wonder whether this may lead to the dependency library installation issue. All other versions show no error (2.7 and 3.6). Other CI tools do not complain either, which makes this more like an image issue…

Thanks a lot if you could shed some light :slight_smile:
Cheers,

Yue

If you download the archive from the two different locations, you see that they are identical. A far more likely explanation is that the underlying dependencies in your requirements_ci.txt changed and the changes are now causing the problems; for instance, llvmlite itself changed from 0.27.0 to 0.27.1.

Thanks for the quick response. The image change led me believe it might be the cause. I searched online moments ago and believe you are right: https://github.com/numba/llvmlite/issues/471

It is more like an issue with llvmlite, and I will follow up on their thread.
Thanks again!