On 2015-07-17 11:40, Himanshu Mishra wrote:
> I use
>
> pip install --install-option="--no-cython-compile" Cython
>
>
> Thank you Marcel, that worked.
Great, glad I could help.
> However, pip 7.0.0 and later cache installed packages automatically in
> the form of wheels. Subsequent installs are therefore much faster, even
> faster than the above command (one second or so). If you can convince
> your CI to use that, that would be the way to go since it applies to
> all
> packages and there is no need to special-case Cython anymore.
>
>
> Regarding this, I have a doubt. Well, CI environments have Virtual
> Machines(VMs) for different virtual envs. I don't really understand how
> caching a wheel on one VM can be reused on the other.
It surely depends on which CI you use, but Travis supports it. See
https://github.com/nickstenning/travis-pip-cache for an example.
Marcel