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 1b4080032a GH-44461: [Release][Packacing][Python] Set
PARQUET_TEST_DATA on verify-release-candidate-wheels.bat (#44462)
1b4080032a is described below
commit 1b4080032a86cacd9b21988514438ac3d5696d81
Author: Raúl Cumplido <[email protected]>
AuthorDate: Fri Oct 25 16:49:04 2024 +0200
GH-44461: [Release][Packacing][Python] Set PARQUET_TEST_DATA on
verify-release-candidate-wheels.bat (#44462)
### Rationale for this change
The Windows wheel verification fails due to missing `PARQUET_TEST_DATA`
### What changes are included in this PR?
Add `PARQUET_TEST_DATA` to `verify-release-candidate-wheels.bat` which is
only tested on the binary verification job.
### Are these changes tested?
Via archery
### Are there any user-facing changes?
No
* GitHub Issue: #44461
Lead-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Raúl Cumplido <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
ci/scripts/download_tz_database.sh | 4 ++--
dev/release/verify-release-candidate-wheels.bat | 2 ++
dev/tasks/verify-rc/github.win.yml | 1 +
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/ci/scripts/download_tz_database.sh
b/ci/scripts/download_tz_database.sh
index c4095ef9c2..b74d251a43 100755
--- a/ci/scripts/download_tz_database.sh
+++ b/ci/scripts/download_tz_database.sh
@@ -20,11 +20,11 @@
set -ex
# Download database
-curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output
~/Downloads/tzdata2021e.tar.gz
+curl https://data.iana.org/time-zones/releases/tzdata2024b.tar.gz --output
~/Downloads/tzdata.tar.gz
# Extract
mkdir -p ~/Downloads/tzdata
-tar --extract --file ~/Downloads/tzdata2021e.tar.gz --directory
~/Downloads/tzdata
+tar --extract --file ~/Downloads/tzdata.tar.gz --directory ~/Downloads/tzdata
# Download Windows timezone mapping
curl
https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml
--output ~/Downloads/tzdata/windowsZones.xml
diff --git a/dev/release/verify-release-candidate-wheels.bat
b/dev/release/verify-release-candidate-wheels.bat
index d846b69da8..a9a4703fae 100644
--- a/dev/release/verify-release-candidate-wheels.bat
+++ b/dev/release/verify-release-candidate-wheels.bat
@@ -55,6 +55,7 @@ python arrow\dev\release\download_rc_binaries.py
%ARROW_VERSION% %RC_NUMBER% ^
call deactivate
set ARROW_TEST_DATA=%cd%\arrow\testing\data
+set PARQUET_TEST_DATA=%cd%\arrow\cpp\submodules\parquet-testing\data
CALL :verify_wheel 3.9
@@ -107,6 +108,7 @@ python -c "import pyarrow.dataset" || EXIT /B 1
pip install -r arrow\python\requirements-test.txt || EXIT /B 1
set PYARROW_TEST_CYTHON=OFF
+set TZDIR=%CONDA_ENV_PATH%\share\zoneinfo
pytest %CONDA_ENV_PATH%\Lib\site-packages\pyarrow --pdb -v || EXIT /B 1
:done
diff --git a/dev/tasks/verify-rc/github.win.yml
b/dev/tasks/verify-rc/github.win.yml
index 67ebb39a87..c70fc80139 100644
--- a/dev/tasks/verify-rc/github.win.yml
+++ b/dev/tasks/verify-rc/github.win.yml
@@ -29,6 +29,7 @@ jobs:
{{ key }}: {{ value }}
{% endfor %}
{% endif %}
+ timeout-minutes: 60
steps:
{{ macros.github_checkout_arrow(fetch_depth=0)|indent }}