MugundanMCW commented on code in PR #48539: URL: https://github.com/apache/arrow/pull/48539#discussion_r2684740659
########## ci/scripts/python_wheel_windows_build.bat: ########## @@ -127,10 +198,21 @@ set PYARROW_WITH_PARQUET=%ARROW_PARQUET% set PYARROW_WITH_PARQUET_ENCRYPTION=%PARQUET_REQUIRE_ENCRYPTION% set PYARROW_WITH_SUBSTRAIT=%ARROW_SUBSTRAIT% set PYARROW_WITH_S3=%ARROW_S3% -set ARROW_HOME=C:\arrow-dist -set CMAKE_PREFIX_PATH=C:\arrow-dist +set ARROW_HOME=%ARROW_DIST% +set CMAKE_PREFIX_PATH=%ARROW_DIST% + +if "%arch%"=="ARM64" ( + set Arrow_DIR=%ARROW_DIST%\lib\cmake\arrow +) -pushd C:\arrow\python +pushd %ARROW_SRC%\python + +if "%arch%"=="ARM64" ( + @REM Install Python dependencies for Win-ARM64 + echo "=== Installing Python dependencies ===" + %PYTHON_CMD% -m pip install --upgrade pip || exit /B 1 + %PYTHON_CMD% -m pip install cython numpy setuptools_scm setuptools wheel || exit /B 1 +) Review Comment: @pitrou I have moved these steps as part of Windows ARM64 workflow. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
