Skip to content

Commit

Permalink
FIX-#6336: pin 'pydantic<2' to fix CI (#6337)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev authored and vnlitvinov committed Jul 3, 2023
1 parent f883c25 commit 3502cd8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
5 changes: 4 additions & 1 deletion docs/requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ pyyaml
recommonmark
sphinx<6.0.0
sphinx-click
ray[default]>=1.13.0
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
ray[default]>=1.13.0,!=2.5.0
# https://github.com/modin-project/modin/issues/6336
pydantic<2
# Override to latest version of modin-spreadsheet
git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
sphinxcontrib_plantuml
Expand Down
5 changes: 4 additions & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ channels:
dependencies:
- pandas==1.5.3
- numpy>=1.18.5
- ray-default>=1.13.0
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
- ray-default>=1.13.0,!=2.5.0
# https://github.com/modin-project/modin/issues/6336
- pydantic<2
- pyarrow
# workaround for https://github.com/conda/conda/issues/11744
- grpcio!=1.45.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ jupyterlab
ipywidgets
tqdm
modin[ray]
# https://github.com/modin-project/modin/issues/6336
pydantic<2
modin[spreadsheet]
5 changes: 4 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ pandas==1.5.3
numpy>=1.18.5
dask[complete]>=2.22.0
distributed>=2.22.0
ray[default]>=1.13.0
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
ray[default]>=1.13.0,!=2.5.0
# https://github.com/modin-project/modin/issues/6336
pydantic<2
pyarrow<12 # workaround for https://github.com/modin-project/modin/issues/6072
psutil
fsspec
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
long_description = fh.read()

dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
ray_deps = ["ray[default]>=1.13.0", "pyarrow"]
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
# pydantic<2: https://github.com/modin-project/modin/issues/6336
ray_deps = ["ray[default]>=1.13.0,!=2.5.0", "pyarrow", "pydantic<2"]
unidist_deps = ["unidist[mpi]>=0.2.1"]
remote_deps = ["rpyc==4.1.5", "cloudpickle", "boto3"]
spreadsheet_deps = ["modin-spreadsheet>=0.1.0"]
Expand Down

0 comments on commit 3502cd8

Please sign in to comment.