Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin pyarrow version for integration tests #770

Merged
merged 2 commits into from
Dec 20, 2022
Merged
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
6 changes: 5 additions & 1 deletion ci/test_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ devices=$2

# Run only for Merlin Tensorflow Container
if [ "$container" == "merlin-tensorflow" ]; then
pip install 'feast<0.20'
# feast will install latest pyarrow version (currently 10.0.1)
# this vesrion of pyarrow is incompatibile
# with the current version of cudf 22.12
# pinning the version of pyarrow here to match the cudf-supported version
pip install 'feast<0.20' pyarrow==8.0.0
pip install dask==2022.07.1 distributed==2022.07.1
CUDA_VISIBLE_DEVICES="$devices" pytest -rxs tests/integration
fi