From fe9bb10e38d7883a79229e93c6371605245c3d73 Mon Sep 17 00:00:00 2001 From: Mahesh Vashishtha Date: Wed, 3 May 2023 11:24:53 -0500 Subject: [PATCH] FIX-#6074: cap pyarrow<12 to fix CI (#6075) Signed-off-by: mvashishtha --- environment-dev.yml | 2 +- requirements-dev.txt | 2 +- requirements/env_hdk.yml | 2 +- requirements/env_unidist.yml | 2 +- requirements/requirements-no-engine.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/environment-dev.yml b/environment-dev.yml index ef2f5a4fce5..ed6eaa17726 100644 --- a/environment-dev.yml +++ b/environment-dev.yml @@ -5,7 +5,7 @@ dependencies: - pandas==1.5.3 - numpy>=1.18.5 - ray-default>=1.13.0 - - pyarrow + - pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072 # workaround for https://github.com/conda/conda/issues/11744 - grpcio!=1.45.* - grpcio!=1.46.* diff --git a/requirements-dev.txt b/requirements-dev.txt index 47c9774a176..67de5f34d12 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,7 +3,7 @@ numpy>=1.18.5 dask[complete]>=2.22.0 distributed>=2.22.0 ray[default]>=1.13.0 -pyarrow +pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072 psutil fsspec xarray diff --git a/requirements/env_hdk.yml b/requirements/env_hdk.yml index f908e6e5a2d..f955d9d6f5f 100644 --- a/requirements/env_hdk.yml +++ b/requirements/env_hdk.yml @@ -3,7 +3,7 @@ channels: - conda-forge dependencies: - pandas==1.5.3 - - pyarrow + - pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072 - numpy>=1.18.5 - fsspec - pip diff --git a/requirements/env_unidist.yml b/requirements/env_unidist.yml index fc72960952d..422666782d9 100644 --- a/requirements/env_unidist.yml +++ b/requirements/env_unidist.yml @@ -5,7 +5,7 @@ dependencies: - unidist-mpi>=0.2.1 - pandas==1.5.3 - numpy>=1.18.5 - - pyarrow + - pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072 - fsspec - xarray - Jinja2 diff --git a/requirements/requirements-no-engine.yml b/requirements/requirements-no-engine.yml index 204545abc3a..9058ffdad18 100644 --- a/requirements/requirements-no-engine.yml +++ b/requirements/requirements-no-engine.yml @@ -3,7 +3,7 @@ channels: dependencies: - pandas==1.5.3 - numpy>=1.18.5 - - pyarrow>=4.0.1 + - pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072 - fsspec - xarray - Jinja2