curdling icon indicating copy to clipboard operation
curdling copied to clipboard

Downgrade package if needed

Open suside opened this issue 11 years ago • 1 comments

Actual:

root@lxc-test:/app# curd install Django==1.6.2 
root@lxc-test:/app# curd install Django==1.5.5 
root@lxc-test:/app# pip freeze | grep -i django==
Django==1.6.2

Expected:

root@lxc-test:/app# curd install Django==1.6.2 
root@lxc-test:/app# curd install Django==1.5.5 
root@lxc-test:/app# pip freeze | grep -i django==
Django==1.5.5

suside avatar Mar 05 '14 07:03 suside

That's a bug in our cache detection. Curdling is too aggressive trying to always use already compiled binaries. Thanks for opening the issue!

clarete avatar Apr 18 '14 21:04 clarete