-
I'm trying to get the build dependencies for numpy and scipy in place for my little Cython package. I don't see any errors in the debugging logs; yum calculates the packages it needs to install, and then... nothing. It just sits there until it times out. No errors in the logs that I can find. If I remove the CIBW_BEFORE_ALL_LINUX option, the workflow will go ahead and build wheels for my package. Unfortunately, the system dependencies (LAPACK, BLAS and ATLAS) are either missing or included, seemingly at random, in various manylinux images (not sure what's up with that). I would prefer to handle system dependencies with Conda, but apparently that's bad (see #773). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Well, let this be a lesson-learned, I guess. That -y in The way buffering works on containers makes it exceedingly unlikely that the user will actually see the prompt for confirmation. |
Beta Was this translation helpful? Give feedback.
Well, let this be a lesson-learned, I guess. That -y in
yum install -y
is important. May I request that it be called out more prominently in the documentation for users more familiar with other package managers?The way buffering works on containers makes it exceedingly unlikely that the user will actually see the prompt for confirmation.