You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ninja instead of the default cmake generator can be quite beneficial (you get some form of cached / incremental build, although not perfect), but we don't really document this at https://arrow.apache.org/docs/dev/developers/python.html
export PYARROW_CMAKE_GENERATOR=Ninja
The text was updated successfully, but these errors were encountered:
After using this a while, I have to say this is quite broken. Half of the time, it doesn't properly reinstall the extension modules that it should (based on which files were changed. For example, I edit _dataset.pyx, it recompiles a bunch (some subset) of cython files, and in the end sometimes prints -- Up-to-date: /home/joris/scipy/repos/arrow/python/pyarrow/./_dataset.cpython-310-x86_64-linux-gnu.so, while it obviously was not, and should have reinstalled it)
Using ninja instead of the default cmake generator can be quite beneficial (you get some form of cached / incremental build, although not perfect), but we don't really document this at https://arrow.apache.org/docs/dev/developers/python.html
The text was updated successfully, but these errors were encountered: