Skip to content

Commit 751d6e4

Browse files
authored
Use wheel for pyarrow on Python 3.12 (#978)
Since pyarrow now ships a pre-built wheel for python 3.12, we no longer need to build it from source for testing.
1 parent c6fd59e commit 751d6e4

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

testkit/Dockerfile

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,3 @@ RUN for version in $PYTHON_VERSIONS; do \
5757
python$version -m pip install -U pip && \
5858
python$version -m pip install -U coverage tox; \
5959
done
60-
61-
# Installing pyarrow lib until pre-built wheel for Python 3.12 exists
62-
# https://github.com/apache/arrow/issues/37880
63-
RUN apt update && \
64-
apt install -y -V lsb-release cmake gcc && \
65-
distro_name=$(lsb_release --id --short | tr 'A-Z' 'a-z') && \
66-
code_name=$(lsb_release --codename --short) && \
67-
wget https://apache.jfrog.io/artifactory/arrow/${distro_name}/apache-arrow-apt-source-latest-${code_name}.deb && \
68-
apt install -y -V ./apache-arrow-apt-source-latest-${code_name}.deb && \
69-
apt update && \
70-
apt install -y -V libarrow-dev # For C++

0 commit comments

Comments
 (0)