Skip to content

Commit

Permalink
FIX-modin-project#6074: cap pyarrow<12 to fix CI (modin-project#6075)
Browse files Browse the repository at this point in the history
Signed-off-by: mvashishtha <mahesh@ponder.io>
  • Loading branch information
mvashishtha authored May 3, 2023
1 parent 8817093 commit fe9bb10
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_hdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_unidist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-no-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fe9bb10

Please sign in to comment.