Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev/release/verify-release-candidate-wheels.bat
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ python -c "import pyarrow" || EXIT /B 1
python -c "import pyarrow.flight" || EXIT /B 1
python -c "import pyarrow.gandiva" || EXIT /B 1
python -c "import pyarrow.parquet" || EXIT /B 1
python -c "import pyarrow.dataset" || EXIT /B 1

call deactivate

Expand Down
2 changes: 2 additions & 0 deletions dev/release/verify-release-candidate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ cmake -G "Ninja" ^
-DARROW_WITH_BROTLI=ON ^
-DARROW_FLIGHT=ON ^
-DARROW_PYTHON=ON ^
-DARROW_DATASET=ON ^
-DARROW_PARQUET=ON ^
.. || exit /B

Expand Down Expand Up @@ -114,6 +115,7 @@ pushd %ARROW_SOURCE%\python

set PYARROW_WITH_FLIGHT=1
set PYARROW_WITH_PARQUET=1
set PYARROW_WITH_DATASET=1
python setup.py build_ext --inplace --bundle-arrow-cpp bdist_wheel || exit /B
py.test pyarrow -v -s --parquet || exit /B

Expand Down
5 changes: 4 additions & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ ${ARROW_CMAKE_OPTIONS:-}
-DARROW_PYTHON=ON
-DARROW_GANDIVA=ON
-DARROW_PARQUET=ON
-DARROW_DATASET=ON
-DPARQUET_REQUIRE_ENCRYPTION=ON
-DARROW_WITH_BZ2=ON
-DARROW_WITH_ZLIB=ON
Expand Down Expand Up @@ -351,6 +352,7 @@ test_python() {

pip install -r requirements.txt -r requirements-test.txt

export PYARROW_WITH_DATASET=1
export PYARROW_WITH_GANDIVA=1
export PYARROW_WITH_PARQUET=1
export PYARROW_WITH_PLASMA=1
Expand Down Expand Up @@ -584,7 +586,8 @@ check_python_imports() {
python -c "import pyarrow.fs"

if [[ "$py_arch" =~ ^3 ]]; then
# Flight and Gandiva are only available for py3
# Flight, Gandiva and Dataset are only available for py3
python -c "import pyarrow.dataset"
python -c "import pyarrow.flight"
python -c "import pyarrow.gandiva"
fi
Expand Down