This is an automated email from the ASF dual-hosted git repository.

ruifengz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a8bad7e72d8 [SPARK-55319][PYTHON][INFRA] Add libjpeg-dev to pypy 
dockerfile
7a8bad7e72d8 is described below

commit 7a8bad7e72d80e160e43467990bbd14fe2f85578
Author: Tian Gao <[email protected]>
AuthorDate: Tue Feb 3 13:38:22 2026 +0800

    [SPARK-55319][PYTHON][INFRA] Add libjpeg-dev to pypy dockerfile
    
    ### What changes were proposed in this pull request?
    
    `libjpeg` is removed from pypy image in 
https://github.com/apache/spark/commit/3b2ab279b6ef6b4ffdbf1a45c00b2e983c126236 
. However that lib is required for pypy to build `pillow` from source. Add this 
back to make the image build again.
    
    ### Why are the changes needed?
    
    pypy builds are failing.
    
    https://github.com/apache/spark/actions/runs/21595874748/job/62228181146
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Scheduled CI should pass.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #54101 from gaogaotiantian/fix-pypy-build.
    
    Authored-by: Tian Gao <[email protected]>
    Signed-off-by: Ruifeng Zheng <[email protected]>
---
 dev/spark-test-image/pypy-310/Dockerfile | 3 ++-
 dev/spark-test-image/pypy-311/Dockerfile | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev/spark-test-image/pypy-310/Dockerfile 
b/dev/spark-test-image/pypy-310/Dockerfile
index a81bcdde1f1c..9ddec543517b 100644
--- a/dev/spark-test-image/pypy-310/Dockerfile
+++ b/dev/spark-test-image/pypy-310/Dockerfile
@@ -24,7 +24,7 @@ LABEL org.opencontainers.image.ref.name="Apache Spark Infra 
Image For PySpark wi
 # Overwrite this label to avoid exposing the underlying Ubuntu OS version label
 LABEL org.opencontainers.image.version=""
 
-ENV FULL_REFRESH_DATE=20260127
+ENV FULL_REFRESH_DATE=20260202
 
 ENV DEBIAN_FRONTEND=noninteractive
 ENV DEBCONF_NONINTERACTIVE_SEEN=true
@@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y \
     git \
     gnupg \
     libgit2-dev \
+    libjpeg-dev \
     liblapack-dev \
     libopenblas-dev \
     libssl-dev \
diff --git a/dev/spark-test-image/pypy-311/Dockerfile 
b/dev/spark-test-image/pypy-311/Dockerfile
index ca2a72d3c17e..73d3159b5e5b 100644
--- a/dev/spark-test-image/pypy-311/Dockerfile
+++ b/dev/spark-test-image/pypy-311/Dockerfile
@@ -24,7 +24,7 @@ LABEL org.opencontainers.image.ref.name="Apache Spark Infra 
Image For PySpark wi
 # Overwrite this label to avoid exposing the underlying Ubuntu OS version label
 LABEL org.opencontainers.image.version=""
 
-ENV FULL_REFRESH_DATE=20260127
+ENV FULL_REFRESH_DATE=20260202
 
 ENV DEBIAN_FRONTEND=noninteractive
 ENV DEBCONF_NONINTERACTIVE_SEEN=true
@@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y \
     git \
     gnupg \
     libgit2-dev \
+    libjpeg-dev \
     liblapack-dev \
     libopenblas-dev \
     libssl-dev \


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to