This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 0e8c1651cde [v3-1-test] Fix mpi4py building in CI (#61581) (#61590)
0e8c1651cde is described below
commit 0e8c1651cdec9c877f7b2227aeaabee65cea1349
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Feb 7 12:25:47 2026 +0100
[v3-1-test] Fix mpi4py building in CI (#61581) (#61590)
(cherry picked from commit ac9e4be2c9dfbce552c83f7341d8e533cb7ef4c5)
Co-authored-by: Jens Scheffler <[email protected]>
---
.../docker-examples/customizing/add-build-essential-custom.sh | 2 +-
.../docker-examples/extending/add-build-essential-extend/Dockerfile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/docker-stack-docs/docker-examples/customizing/add-build-essential-custom.sh
b/docker-stack-docs/docker-examples/customizing/add-build-essential-custom.sh
index 8a0aed47c7d..c8560704462 100755
---
a/docker-stack-docs/docker-examples/customizing/add-build-essential-custom.sh
+++
b/docker-stack-docs/docker-examples/customizing/add-build-essential-custom.sh
@@ -34,7 +34,7 @@ docker build . \
--build-arg BASE_IMAGE="debian:bookworm-slim" \
--build-arg AIRFLOW_VERSION="${AIRFLOW_VERSION}" \
--build-arg AIRFLOW_PYTHON_VERSION="3.12.12" \
- --build-arg ADDITIONAL_PYTHON_DEPS="mpi4py==4.1.0" \
+ --build-arg ADDITIONAL_PYTHON_DEPS="mpi4py==4.1.1" \
--build-arg ADDITIONAL_DEV_APT_DEPS="libopenmpi-dev" \
--build-arg ADDITIONAL_RUNTIME_APT_DEPS="openmpi-common" \
--tag "my-build-essential-image:0.0.1"
diff --git
a/docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile
b/docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile
index c3992cc0c93..d6d33242352 100644
---
a/docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile
+++
b/docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile
@@ -24,5 +24,5 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER airflow
-RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}"
"mpi4py==3.1.6"
+RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}"
"mpi4py==4.1.1"
# [END Dockerfile]