jsherman256 commented on issue #37880: URL: https://github.com/apache/arrow/issues/37880#issuecomment-1744765477
FYI: this impacts docker images based on `python:3` if they try to install pyarrow or packages dependent on pyarrow. This is because the `python:3` image now refers to python 3.12, but pyarrow cannot be built inside that image by default, since it's missing `cmake`: ``` #7 381.6 Building wheel for pyarrow (pyproject.toml): started #7 382.1 Building wheel for pyarrow (pyproject.toml): finished with status 'error' #7 382.1 error: subprocess-exited-with-error #7 382.1 #7 382.1 × Building wheel for pyarrow (pyproject.toml) did not run successfully. ... #7 382.1 error: command 'cmake' failed: No such file or directory #7 382.1 [end of output] #7 382.1 #7 382.1 note: This error originates from a subprocess, and is likely not a problem with pip. #7 382.1 ERROR: Failed building wheel for pyarrow ``` Just leaving this here in case it helps someone else debugging why their python container suddenly wont build anymore. I worked around this by moving from `python:3` to `python:3.11.6` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
