Skip to content

Commit 599da50

Browse files
authored
FIX-#7246: Pin pyarrow>=10.0.1 as pandas 2.2.* does (#7247)
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 06699a8 commit 599da50

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

environment-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
# optional dependencies
1515
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
1616
- ray-core>=2.1.0,!=2.5.0
17-
- pyarrow>=7.0.0
17+
- pyarrow>=10.0.1
1818
# workaround for https://github.com/conda/conda/issues/11744
1919
- grpcio!=1.45.*
2020
- grpcio!=1.46.*

modin/core/io/column_stores/parquet_dispatcher.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,7 @@ def row_groups_per_file(self):
210210

211211
@functools.cached_property
212212
def files(self):
213-
try:
214-
files = self.dataset.files
215-
except AttributeError:
216-
# compatibility at least with 3.0.0 <= pyarrow < 8.0.0
217-
files = self.dataset._dataset.files
213+
files = self.dataset.files
218214
return self._get_files(files)
219215

220216
def to_pandas_dataframe(

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ psutil>=5.8.0
88
## optional dependencies
99
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
1010
ray>=2.1.0,!=2.5.0
11-
pyarrow>=7.0.0
11+
pyarrow>=10.0.1
1212
dask[complete]>=2.22.0
1313
distributed>=2.22.0
1414
xarray>=2022.12.0

requirements/env_unidist_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- psutil>=5.8.0
1515

1616
# optional dependencies
17-
- pyarrow>=7.0.0
17+
- pyarrow>=10.0.1
1818
- xarray>=2022.12.0
1919
- jinja2>=3.1.2
2020
- scipy>=1.10.0

requirements/env_unidist_win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- psutil>=5.8.0
1515

1616
# optional dependencies
17-
- pyarrow>=7.0.0
17+
- pyarrow>=10.0.1
1818
- xarray>=2022.12.0
1919
- jinja2>=3.1.2
2020
- scipy>=1.10.0

requirements/requirements-no-engine.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- psutil>=5.8.0
1212

1313
# optional dependencies
14-
- pyarrow>=7.0.0
14+
- pyarrow>=10.0.1
1515
- xarray>=2022.12.0
1616
- jinja2>=3.1.2
1717
- scipy>=1.10.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
99
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
10-
ray_deps = ["ray>=2.1.0,!=2.5.0", "pyarrow>=7.0.0"]
10+
ray_deps = ["ray>=2.1.0,!=2.5.0", "pyarrow>=10.0.1"]
1111
mpi_deps = ["unidist[mpi]>=0.2.1"]
1212
consortium_standard_deps = ["dataframe-api-compat>=0.2.7"]
1313
spreadsheet_deps = ["modin-spreadsheet>=0.1.0"]

0 commit comments

Comments
 (0)