Skip to content

Commit

Permalink
ARROW-7729: [Python][CI] Pin pandas version to 0.25 in the dask integ…
Browse files Browse the repository at this point in the history
…ration test

Additionally test agains dask's latest release not just the master revision.

Closes #6326 from kszucs/dask-pandas-pin and squashes the following commits:

b5cb40e <Krisztián Szűcs> pin pandas depending on dask's version
083221c <Krisztián Szűcs> pin pandas in the dask integration test

Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
  • Loading branch information
kszucs committed Feb 7, 2020
1 parent fee1209 commit baaf702
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ci/docker/conda-python-dask.dockerfile
Expand Up @@ -23,3 +23,6 @@ FROM ${repo}:${arch}-conda-python-${python}
ARG dask=latest
COPY ci/scripts/install_dask.sh /arrow/ci/scripts/
RUN /arrow/ci/scripts/install_dask.sh ${dask}

# The Spark tests currently break with pandas >= 1.0
RUN if [ ${dask} == "latest" ]; then conda install pandas=0.25.3; fi

0 comments on commit baaf702

Please sign in to comment.