Skip to content

Commit

Permalink
FIX-modin-project#5208: pin ray version under 2.1.0 (modin-project#5209)
Browse files Browse the repository at this point in the history
  • Loading branch information
dchigarev authored Nov 8, 2022
1 parent 54c41ab commit 3eed27d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pyyaml
recommonmark
sphinx
sphinx-click
ray[default]>=1.4.0
ray[default]>=1.4.0,<2.1.0
# Override to latest version of modin-spreadsheet
git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
sphinxcontrib_plantuml
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies:
- git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
- tqdm
- git+https://github.com/airspeed-velocity/asv.git@ef016e233cb9a0b19d517135104f49e0a3c380e9
- ray[default]>=1.4.0
- ray[default]>=1.4.0,<2.1.0
- connectorx>=0.2.6a4
# TODO: remove when resolving GH#4398
- redis>=3.5.0,<4.0.0
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
pyarrow>=4.0.1
dask[complete]>=2.22.0
distributed>=2.22.0
ray[default]>=1.4.0
ray[default]>=1.4.0,<2.1.0
redis>=3.5.0,<4.0.0
psutil
fsspec
Expand Down
2 changes: 1 addition & 1 deletion requirements/environment-py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies:
# Fixes breaking ipywidgets changes, but didn't release yet.
- git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
- tqdm
- ray[default]>=1.4.0
- ray[default]>=1.4.0,<2.1.0
# TODO: remove when resolving GH#4398
- redis>=3.5.0,<4.0.0
- black
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-py36.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ numpy>=1.18.5
pyarrow>=4.0.1
dask[complete]>=2.22.0
distributed>=2.22.0
ray[default]>=1.4.0
ray[default]>=1.4.0,<2.1.0
redis>=3.5.0,<4.0.0
psutil
fsspec
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
dask_deps.append("pickle5")

ray_deps = [
"ray[default]>=1.4.0",
"ray[default]>=1.4.0,<2.1.0",
"pyarrow>=4.0.1",
"redis>=3.5.0,<4.0.0",
]
Expand Down

0 comments on commit 3eed27d

Please sign in to comment.