Skip to content

Commit 026e5fb

Browse files
committed
use pip to install dependencies for wheel verification
1 parent c00dfe8 commit 026e5fb

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

dev/release/verify-release-candidate.sh

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,11 @@ test_linux_wheels() {
609609
pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[mu.]/}-cp${py_arch//./}-manylinux${ml_spec}_x86_64.whl
610610
check_python_imports py_arch
611611

612-
# execute the python unit tests
613-
conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas
614-
pytest --pyargs pyarrow
612+
# install test requirements
613+
pip install -r ${ARROW_DIR}/python/requirements-test.txt
614+
615+
# execute the tests
616+
pytest -sv --pyargs pyarrow
615617
done
616618

617619
conda deactivate
@@ -640,9 +642,11 @@ test_macos_wheels() {
640642
pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[m.]/}-cp${py_arch//./}-${macos_suffix}.whl
641643
check_python_imports py_arch
642644

643-
# execute the python unit tests
644-
conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas
645-
pytest --pyargs pyarrow
645+
# install test requirements
646+
pip install -r ${ARROW_DIR}/python/requirements-test.txt
647+
648+
# execute the tests
649+
pytest -sv --pyargs pyarrow
646650

647651
conda deactivate
648652
done

0 commit comments

Comments
 (0)