This is an automated email from the ASF dual-hosted git repository.
kou 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 bafb2d86c4 GH-43232: [Release][Packaging][Python] Add tzdata as conda
env requirement to avoid ORC failure (#43233)
bafb2d86c4 is described below
commit bafb2d86c4c6f67d894a043648c00914ba42e904
Author: Raúl Cumplido <[email protected]>
AuthorDate: Fri Jul 12 21:30:53 2024 +0200
GH-43232: [Release][Packaging][Python] Add tzdata as conda env requirement
to avoid ORC failure (#43233)
### Rationale for this change
Binary verifications for wheels on conda are failing on ORC test due to
missing tzdata
### What changes are included in this PR?
Adding tzdata as conda requirement when setting up the environment on the
verification script
### Are these changes tested?
Those changes have been tested locally
### Are there any user-facing changes?
No
* GitHub Issue: #43232
Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/release/verify-release-candidate.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index fcaaa423a4..2f4b203f21 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -1153,7 +1153,7 @@ test_linux_wheels() {
local pyver=${python/m}
for platform in ${platform_tags}; do
show_header "Testing Python ${pyver} wheel for platform ${platform}"
- CONDA_ENV=wheel-${pyver}-${platform} PYTHON_VERSION=${pyver}
maybe_setup_conda
+ CONDA_ENV=wheel-${pyver}-${platform} PYTHON_VERSION=${pyver}
maybe_setup_conda tzdata
if ! VENV_ENV=wheel-${pyver}-${platform} PYTHON_VERSION=${pyver}
maybe_setup_virtualenv; then
continue
fi