Hide Forgot
Description of problem: Build fails for PyPI packages that need to be built from sources. Version-Release number of selected component (if applicable): openshift dev preview How reproducible: Every time. Steps to Reproduce: 1. make an python3.5 image 2. add git repo with requirements.txt containing: lxml~=3.6.4 pandas~=0.18.1 3. try to build image Actual results: Build failing with an gcc error: http://pastebin.com/RPuutRdP Expected results: 1. Downloading whl packages instead of sources if applicable (at least it's possible for lxml and pandas). 2. At least compile it without errors.
I think someone else may have hit this and found it was a memory issue, you might try assigning a higher memory limit to your buildconfig (it defaults to 512 i believe). Barring that, the SCL team would need to investigate.
(In reply to Ben Parees from comment #1) > you might try assigning a higher memory limit to your buildconfig Yeah, that was helpful. But it's better not to cap limits by default since quota already exists. And what about downloading whl instead of src?
Support for manylinux1 .whl files was added in pip 8.1; the image contains pip 7.1. Perhaps pip should be updated automatically.
I guess this upstream PR should fix this issue. Can anybody confirm?
Fided by https://github.com/sclorg/s2i-python-container/pull/159