raulcd opened a new pull request, #13119: URL: https://github.com/apache/arrow/pull/13119
This minor PR tries to give the user a better hint on what is happening in case of their build being skipped because `cachedir != build_temp`. I faced the issue and had to ask and debug to understand that I had to clean my previous build: ``` (pyarrow-dev) ~/arrow/python (master) $ python setup.py build_ext --inplace running build_ext (pyarrow-dev) ~/arrow/python (master) $ ``` The new output will show on that case: ``` (pyarrow-dev) ~/arrow/python (master) $ python setup.py build_ext --inplace running build_ext -- Skipping build. Temp build /home/raulcd/arrow/python/build/temp.linux-x86_64-3.10 does not match cached dir /arrow/python/build/temp.linux-x86_64-3.10 (pyarrow-dev) ~/arrow/python (master) $ ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org