This is an automated email from the ASF dual-hosted git repository.
raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new a4cde2c650 GH-47451: [Python][CI] Install tzdata-legacy in newer
python-wheel-manylinux-test images (#47452)
a4cde2c650 is described below
commit a4cde2c65022f46a5fc04bedcc7b2e7c8a9d166e
Author: Raúl Cumplido <[email protected]>
AuthorDate: Thu Aug 28 20:12:30 2025 +0200
GH-47451: [Python][CI] Install tzdata-legacy in newer
python-wheel-manylinux-test images (#47452)
### Rationale for this change
The newer underlying docker image doesn't contain required timezones.
### What changes are included in this PR?
Install `tzdata-legacy` on the docker image so timezones are available.
This is already being done on other images.
### Are these changes tested?
Yes, locally and via CI the failing jobs are now successful.
### Are there any user-facing changes?
No
* GitHub Issue: #47451
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
ci/docker/python-wheel-manylinux-test.dockerfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ci/docker/python-wheel-manylinux-test.dockerfile
b/ci/docker/python-wheel-manylinux-test.dockerfile
index 09883f9780..4b84117a1c 100644
--- a/ci/docker/python-wheel-manylinux-test.dockerfile
+++ b/ci/docker/python-wheel-manylinux-test.dockerfile
@@ -28,7 +28,8 @@ RUN pip install -r /arrow/python/requirements-wheel-test.txt
RUN apt-get update -y -q && \
apt-get install -y -q \
build-essential \
- python3-dev && \
+ python3-dev \
+ tzdata-legacy && \
apt-get clean && \
rm -rf /var/lib/apt/lists*