Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ci/scripts/python_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ export PYARROW_PARALLEL=${n_jobs}
export CMAKE_PREFIX_PATH
export LD_LIBRARY_PATH=${ARROW_HOME}/lib:${LD_LIBRARY_PATH}

# https://github.com/apache/arrow/issues/46516
# If we are building docs we force Cython>3.1.1 to avoid numpydoc
# failures due to Cython docstring being wrongly generated.
if [ "${BUILD_DOCS_PYTHON}" == "ON" ]; then
${PYTHON:-python} -m pip install Cython>3.1.1
Comment thread
raulcd marked this conversation as resolved.
Outdated
fi

# https://github.com/apache/arrow/issues/41429
# TODO: We want to out-of-source build. This is a workaround. We copy
# all needed files to the build directory from the source directory
Expand Down
Loading