Skip to content

Commit

Permalink
Fix for dask-expr py38
Browse files Browse the repository at this point in the history
  • Loading branch information
skrawcz committed Nov 17, 2024
1 parent aab055c commit 4d040da
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ fi

if [[ ${TASK} == "integrations" ]]; then
pip install -e '.[pandera]'
pip install dask dask-expr
pip install dask
if python -c 'import sys; exit(0) if sys.version_info > (3, 9) else exit(1)'; then
echo "python version is 3.9+"
pip install dask-expr
else
echo "Python version is 3.8 or less"
fi
pytest tests/integrations
exit 0
fi
Expand Down

0 comments on commit 4d040da

Please sign in to comment.