Skip to content

Commit

Permalink
Merge pull request #8859 from galipremsagar/branch-21.08
Browse files Browse the repository at this point in the history
[REVIEW] Pin max `dask` & `distributed` versions
  • Loading branch information
dillon-cullinan authored Jul 27, 2021
2 parents a69a8a4 + 480d3c8 commit 483fed3
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
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 @@ -40,8 +40,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.6.0
- distributed>=2021.6.0
- dask>=2021.6.0,<=2021.07.1
- distributed>=2021.6.0,<=2021.07.1
- streamz
- arrow-cpp=4.0.1
- dlpack>=0.5,<0.6.0a0
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 @@ -40,8 +40,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask>=2021.6.0
- distributed>=2021.6.0
- dask>=2021.6.0,<=2021.07.1
- distributed>=2021.6.0,<=2021.07.1
- streamz
- arrow-cpp=4.0.1
- dlpack>=0.5,<0.6.0a0
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/custreamz/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ requirements:
- python
- streamz
- cudf {{ version }}
- dask>=2021.6.0
- distributed>=2021.6.0
- dask>=2021.6.0,<=2021.07.1
- distributed>=2021.6.0,<=2021.07.1
- python-confluent-kafka
- cudf_kafka {{ version }}

Expand Down
8 changes: 4 additions & 4 deletions conda/recipes/dask-cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ requirements:
host:
- python
- cudf {{ version }}
- dask>=2021.6.0
- distributed>=2021.6.0
- dask>=2021.6.0,<=2021.07.1
- distributed>=2021.6.0,<=2021.07.1
run:
- python
- cudf {{ version }}
- dask>=2021.6.0
- distributed>=2021.6.0
- dask>=2021.6.0,<=2021.07.1
- distributed>=2021.6.0,<=2021.07.1

test:
requires:
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_cuda_array_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_column_from_ephemeral_cupy_try_lose_reference():


def test_cuda_array_interface_pytorch():
torch = pytest.importorskip("torch")
torch = pytest.importorskip("torch", minversion="1.6.0")
if not torch.cuda.is_available():
pytest.skip("need gpu version of pytorch to be installed")

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.6.4
dask>=2021.6.0
distributed>=2021.6.0
dask>=2021.6.0,<=2021.07.1
distributed>=2021.6.0,<=2021.07.1
streamz
python-confluent-kafka
pytest
Expand Down
4 changes: 2 additions & 2 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.6.0
distributed>=2021.6.0
dask>=2021.6.0,<=2021.07.1
distributed>=2021.6.0,<=2021.07.1
fsspec>=0.6.0
numba>=0.53.1
numpy
Expand Down
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.6.0",
"distributed>=2021.6.0",
"dask>=2021.6.0,<=2021.07.1",
"distributed>=2021.6.0,<=2021.07.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.53.1",
"dask>=2021.6.0",
"distributed>=2021.6.0",
"dask>=2021.6.0,<=2021.07.1",
"distributed>=2021.6.0,<=2021.07.1",
]
}

Expand Down

0 comments on commit 483fed3

Please sign in to comment.