kszucs commented on code in PR #13899:
URL: https://github.com/apache/arrow/pull/13899#discussion_r947885394
##########
ci/docker/linux-apt-python-3.dockerfile:
##########
@@ -39,6 +39,12 @@ RUN pip install \
-r arrow/python/requirements-build.txt \
-r arrow/python/requirements-test.txt
+ARG numba
+COPY ci/scripts/install_numba.sh /arrow/ci/scripts/
+RUN if [ "${numba}" != "" ]; then \
+ /arrow/ci/scripts/install_numba.sh ${numba} \
+ ; fi
Review Comment:
If it doesn't take much time to install numba then it's fine have it here.
--
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]