Skip to content

Commit

Permalink
TEST-#4217: Pin Dask<2022.2.0 as a temporary fix of CI (#4218)
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 Feb 17, 2022
1 parent 9fd8f58 commit a6acfe2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/release_notes/release_notes-0.14.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Key Features and Updates
* FIX-#4113, FIX-#4116, FIX-#4115: Apply new `black` formatting, fix pydocstyle check and readthedocs build (#4114)
* TEST-#3227: Use codecov github action instead of bash form in GA workflows (#3226)
* FIX-#4115: Unpin `pip` in readthedocs deps list (#4170)
* TEST-#4217: Pin `Dask<2022.2.0` as a temporary fix of CI (#4218)

Contributors
------------
Expand Down
4 changes: 2 additions & 2 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ dependencies:
- pandas==1.4.0
- numpy>=1.18.5
- pyarrow>=4.0.1
- dask[complete]>=2.22.0
- distributed>=2.22.0
- dask[complete]>=2.22.0,<2022.2.0
- distributed>=2.22.0,<2022.2.0
- fsspec
- xarray
- Jinja2
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==1.4.0
numpy>=1.18.5
pyarrow>=4.0.1
dask[complete]>=2.22.0
distributed>=2.22.0
dask[complete]>=2.22.0,<2022.2.0
distributed>=2.22.0,<2022.2.0
ray[default]>=1.4.0
psutil==5.6.6
fsspec
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
dask_deps = ["dask>=2.22.0,<2022.2.0", "distributed>=2.22.0,<2022.2.0"]
ray_deps = ["ray[default]>=1.4.0", "pyarrow>=4.0.1"]
remote_deps = ["rpyc==4.1.5", "cloudpickle", "boto3"]
spreadsheet_deps = ["modin-spreadsheet>=0.1.0"]
Expand Down

0 comments on commit a6acfe2

Please sign in to comment.