raulcd opened a new pull request, #49476: URL: https://github.com/apache/arrow/pull/49476
### Rationale for this change With `scikit-build-core` our Cython tests fail to find PyArrow C++ headers due to get_include returning a non-existent directory. ### What changes are included in this PR? Editable builds location of libraries and headers are located at `` Previous to this change: ``` $ python -c "import pyarrow as pa; print(pa.get_include())" /home/raulcd/code/arrow/python/pyarrow/include $ ls /home/raulcd/code/arrow/python/pyarrow/include ls: cannot access '/home/raulcd/code/arrow/python/pyarrow/include': No such file or directory ``` with this change: ``` $ python -c "import pyarrow as pa; print(pa.get_include())" /home/raulcd/code/pyarrow-dev/lib/python3.13/site-packages/pyarrow/include $ ls /home/raulcd/code/pyarrow-dev/lib/python3.13/site-packages/pyarrow/include arrow ``` ### Are these changes tested? Yes, locally for editable installs and on CI for non-editable. ### Are there any user-facing changes? The only change is that headers, generated Cython cpp files and built shared libraries are installed on the virtualenv. -- 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]
