Skip to content

Commit

Permalink
Pin dask and distributed versions to 2021.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shwina committed Apr 1, 2021
1 parent e7153bb commit 7d41494
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions conda/environments/cudf_dev_cuda10.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.3.1
- distributed>=2.22.0
- dask==2021.3.1
- distributed==2021.3.1
- streamz
- dlpack
- arrow-cpp=1.0.1
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cudf_dev_cuda10.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.3.1
- distributed>=2.22.0
- dask==2021.3.1
- distributed==2021.3.1
- streamz
- dlpack
- arrow-cpp=1.0.1
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cudf_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.3.1
- distributed>=2.22.0
- dask==2021.3.1
- distributed==2021.3.1
- streamz
- dlpack
- arrow-cpp=1.0.1
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cudf_dev_cuda11.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.3.1
- distributed>=2.22.0
- dask==2021.3.1
- distributed==2021.3.1
- streamz
- dlpack
- arrow-cpp=1.0.1
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cudf_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.3.1
- distributed>=2.22.0
- dask==2021.3.1
- distributed==2021.3.1
- streamz
- dlpack
- arrow-cpp=1.0.1
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/dask-cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ requirements:
host:
- python
- cudf {{ version }}
- dask>=2021.3.1
- dask==2021.3.1
- distributed >=2.22.0
run:
- python
- cudf {{ version }}
- dask>=2021.3.1
- dask==2021.3.1
- distributed >=2.22.0

test:
Expand Down
4 changes: 2 additions & 2 deletions python/custreamz/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
flake8==3.8.3
black==19.10b0
isort==5.0.7
dask>=2021.3.1
distributed>=2.22.0
dask==2021.3.1
distributed==2021.3.1
streamz
python-confluent-kafka
pytest
Expand Down
6 changes: 3 additions & 3 deletions python/dask_cudf/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2021, NVIDIA CORPORATION.

dask>=2021.3.1
distributed>=2.22.0
dask==2021.3.1
distributed==2021.3.1
fsspec>=0.6.0
numba>=0.49.0,!=0.51.0
numpy
Expand All @@ -11,4 +11,4 @@ setuptools
wheel
flake8==3.8.3
black==19.10b0
isort==5.0.7
isort==5.0.7
8 changes: 4 additions & 4 deletions python/dask_cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

install_requires = [
"cudf",
"dask>=2021.3.1",
"distributed>=2.22.0",
"dask==2021.3.1",
"distributed==2021.3.1",
"fsspec>=0.6.0",
"numpy",
"pandas>=1.0,<1.3.0dev0",
Expand All @@ -23,8 +23,8 @@
"pandas>=1.0,<1.3.0dev0",
"pytest",
"numba>=0.49.0,!=0.51.0",
"dask>=2021.3.1",
"distributed>=2.22.0",
"dask==2021.3.1",
"distributed==2021.3.1",
]
}

Expand Down

0 comments on commit 7d41494

Please sign in to comment.