Skip to content

Commit

Permalink
FIX-#911: Pin Dask Dependency for Python 3.8 compatiblity (#1846)
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
  • Loading branch information
devin-petersohn authored Jul 30, 2020
1 parent a244a56 commit 4d80bd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandas==1.0.5
numpy
pyarrow<0.17
dask[complete]>=2.1.0,<=2.19.0
distributed>=2.3.2,<=2.19.0
dask[complete]>=2.12.0,<=2.19.0
distributed>=2.12.0,<=2.19.0
ray==0.8.6
psutil==5.6.6
xarray
Expand Down
4 changes: 2 additions & 2 deletions requirements/env_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencies:
- pandas==1.0.5
- numpy
- pyarrow>=0.13.0
- dask[complete]>=2.1.0
- distributed>=2.3.2
- dask[complete]>=2.12.0
- distributed>=2.12.0
- psutil==5.6.6
- xarray
- Jinja2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_pure(self):
return False


dask_deps = ["dask>=2.1.0", "distributed>=2.3.2"]
dask_deps = ["dask>=2.12.0", "distributed>=2.12.0"]
ray_deps = ["ray==0.8.6", "pyarrow<0.17"]

all_deps = dask_deps + ray_deps
Expand Down

0 comments on commit 4d80bd8

Please sign in to comment.