diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 000af83a1721d..9d68b7ce18bb2 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -609,8 +609,10 @@ test_linux_wheels() { pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[mu.]/}-cp${py_arch//./}-manylinux${ml_spec}_x86_64.whl check_python_imports py_arch - # execute the python unit tests - conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas + # install test requirements + pip install -r ${ARROW_DIR}/python/requirements-test.txt + + # execute the tests pytest --pyargs pyarrow done @@ -640,8 +642,10 @@ test_macos_wheels() { pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[m.]/}-cp${py_arch//./}-${macos_suffix}.whl check_python_imports py_arch - # execute the python unit tests - conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas + # install test requirements + pip install -r ${ARROW_DIR}/python/requirements-test.txt + + # execute the tests pytest --pyargs pyarrow conda deactivate