new-coder icon indicating copy to clipboard operation
new-coder copied to clipboard

Check to see if deps across projects can use same versions

Open econchick opened this issue 10 years ago • 1 comments

Per @sigmavirus24 - the requirements files in the different projects use different versions of the same dependency, and does not take advantage of cached wheels.

econchick avatar Aug 03 '15 23:08 econchick

So, I had to take care of toddlers yesterday, but I meant to make a recommendation. One of the requirements I saw was that one project requires matplotlib==1.4.2 while another requires matplotlib==1.4.3 You could more generally use matplotlib>=1.4.0,<1.5.0 here if you want to assume the 1.4.x branch should just work and not break things. This lets users take advantage of their local wheel cache.

sigmavirus24 avatar Aug 17 '15 15:08 sigmavirus24