From 96d81ae0f26c85688bba524a8b3b660e1ef83e21 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Thu, 23 Sep 2021 12:50:27 -0500 Subject: [PATCH 1/2] Apply suggestions from code review --- conda/environments/cudf_dev_cuda11.0.yml | 4 ++-- conda/environments/cudf_dev_cuda11.2.yml | 4 ++-- conda/recipes/custreamz/meta.yaml | 4 ++-- conda/recipes/dask-cudf/meta.yaml | 8 ++++---- python/custreamz/dev_requirements.txt | 4 ++-- python/dask_cudf/dev_requirements.txt | 4 ++-- python/dask_cudf/setup.py | 8 ++++---- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/conda/environments/cudf_dev_cuda11.0.yml b/conda/environments/cudf_dev_cuda11.0.yml index f19a121f061..1ba6de034a5 100644 --- a/conda/environments/cudf_dev_cuda11.0.yml +++ b/conda/environments/cudf_dev_cuda11.0.yml @@ -39,8 +39,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask>=2021.6.0,<=2021.09.1 - - distributed>=2021.6.0,<=2021.09.1 + - dask=2021.9.1 + - distributed=2021.9.1 - streamz - arrow-cpp=5.0.0 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/environments/cudf_dev_cuda11.2.yml b/conda/environments/cudf_dev_cuda11.2.yml index 38572ace443..b316ace6364 100644 --- a/conda/environments/cudf_dev_cuda11.2.yml +++ b/conda/environments/cudf_dev_cuda11.2.yml @@ -39,8 +39,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask>=2021.6.0,<=2021.09.1 - - distributed>=2021.6.0,<=2021.09.1 + - dask=2021.9.1 + - distributed=2021.9.1 - streamz - arrow-cpp=5.0.0 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/recipes/custreamz/meta.yaml b/conda/recipes/custreamz/meta.yaml index 7c3c1877c76..6e6d33cf03f 100644 --- a/conda/recipes/custreamz/meta.yaml +++ b/conda/recipes/custreamz/meta.yaml @@ -31,8 +31,8 @@ requirements: - python - streamz - cudf {{ version }} - - dask>=2021.6.0,<=2021.09.1 - - distributed>=2021.6.0,<=2021.09.1 + - dask=2021.9.1 + - distributed=2021.9.1 - python-confluent-kafka - cudf_kafka {{ version }} diff --git a/conda/recipes/dask-cudf/meta.yaml b/conda/recipes/dask-cudf/meta.yaml index c7f154395bf..b8c88480506 100644 --- a/conda/recipes/dask-cudf/meta.yaml +++ b/conda/recipes/dask-cudf/meta.yaml @@ -26,13 +26,13 @@ requirements: host: - python - cudf {{ version }} - - dask>=2021.6.0,<=2021.09.1 - - distributed>=2021.6.0,<=2021.09.1 + - dask=2021.9.1 + - distributed=2021.9.1 run: - python - cudf {{ version }} - - dask>=2021.6.0,<=2021.09.1 - - distributed>=2021.6.0,<=2021.09.1 + - dask=2021.9.1 + - distributed=2021.9.1 test: # [linux64] requires: # [linux64] diff --git a/python/custreamz/dev_requirements.txt b/python/custreamz/dev_requirements.txt index bd94b4d6d52..1f0c6a4d9cf 100644 --- a/python/custreamz/dev_requirements.txt +++ b/python/custreamz/dev_requirements.txt @@ -3,8 +3,8 @@ flake8==3.8.3 black==19.10b0 isort==5.6.4 -dask>=2021.6.0,<=2021.09.1 -distributed>=2021.6.0,<=2021.09.1 +dask==2021.9.1 +distributed==2021.9.1 streamz python-confluent-kafka pytest diff --git a/python/dask_cudf/dev_requirements.txt b/python/dask_cudf/dev_requirements.txt index 282f66d0d04..afcab224a2e 100644 --- a/python/dask_cudf/dev_requirements.txt +++ b/python/dask_cudf/dev_requirements.txt @@ -1,7 +1,7 @@ # Copyright (c) 2021, NVIDIA CORPORATION. -dask>=2021.6.0,<=2021.09.1 -distributed>=2021.6.0,<=2021.09.1 +dask==2021.9.1 +distributed==2021.9.1 fsspec>=0.6.0 numba>=0.53.1 numpy diff --git a/python/dask_cudf/setup.py b/python/dask_cudf/setup.py index 84178caeb72..7b88034173f 100644 --- a/python/dask_cudf/setup.py +++ b/python/dask_cudf/setup.py @@ -10,8 +10,8 @@ install_requires = [ "cudf", - "dask>=2021.6.0,<=2021.09.1", - "distributed>=2021.6.0,<=2021.09.1", + "dask==2021.9.1", + "distributed==2021.9.1", "fsspec>=0.6.0", "numpy", "pandas>=1.0,<1.4.0dev0", @@ -23,8 +23,8 @@ "pandas>=1.0,<1.4.0dev0", "pytest", "numba>=0.53.1", - "dask>=2021.6.0,<=2021.09.1", - "distributed>=2021.6.0,<=2021.09.1", + "dask==2021.9.1", + "distributed==2021.9.1", ] } From a4434ab187905464cc31b51c6c7ef65e355fc427 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Thu, 23 Sep 2021 12:57:51 -0500 Subject: [PATCH 2/2] Apply suggestions from code review --- conda/environments/cudf_dev_cuda11.0.yml | 4 ++-- conda/environments/cudf_dev_cuda11.2.yml | 4 ++-- conda/recipes/custreamz/meta.yaml | 4 ++-- conda/recipes/dask-cudf/meta.yaml | 8 ++++---- python/custreamz/dev_requirements.txt | 4 ++-- python/dask_cudf/dev_requirements.txt | 4 ++-- python/dask_cudf/setup.py | 8 ++++---- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/conda/environments/cudf_dev_cuda11.0.yml b/conda/environments/cudf_dev_cuda11.0.yml index 1ba6de034a5..1476c294682 100644 --- a/conda/environments/cudf_dev_cuda11.0.yml +++ b/conda/environments/cudf_dev_cuda11.0.yml @@ -39,8 +39,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask=2021.9.1 - - distributed=2021.9.1 + - dask=2021.09.1 + - distributed=2021.09.1 - streamz - arrow-cpp=5.0.0 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/environments/cudf_dev_cuda11.2.yml b/conda/environments/cudf_dev_cuda11.2.yml index b316ace6364..37f1899fcf5 100644 --- a/conda/environments/cudf_dev_cuda11.2.yml +++ b/conda/environments/cudf_dev_cuda11.2.yml @@ -39,8 +39,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask=2021.9.1 - - distributed=2021.9.1 + - dask=2021.09.1 + - distributed=2021.09.1 - streamz - arrow-cpp=5.0.0 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/recipes/custreamz/meta.yaml b/conda/recipes/custreamz/meta.yaml index 6e6d33cf03f..db8aa8e6c85 100644 --- a/conda/recipes/custreamz/meta.yaml +++ b/conda/recipes/custreamz/meta.yaml @@ -31,8 +31,8 @@ requirements: - python - streamz - cudf {{ version }} - - dask=2021.9.1 - - distributed=2021.9.1 + - dask=2021.09.1 + - distributed=2021.09.1 - python-confluent-kafka - cudf_kafka {{ version }} diff --git a/conda/recipes/dask-cudf/meta.yaml b/conda/recipes/dask-cudf/meta.yaml index b8c88480506..45d96a2de85 100644 --- a/conda/recipes/dask-cudf/meta.yaml +++ b/conda/recipes/dask-cudf/meta.yaml @@ -26,13 +26,13 @@ requirements: host: - python - cudf {{ version }} - - dask=2021.9.1 - - distributed=2021.9.1 + - dask=2021.09.1 + - distributed=2021.09.1 run: - python - cudf {{ version }} - - dask=2021.9.1 - - distributed=2021.9.1 + - dask=2021.09.1 + - distributed=2021.09.1 test: # [linux64] requires: # [linux64] diff --git a/python/custreamz/dev_requirements.txt b/python/custreamz/dev_requirements.txt index 1f0c6a4d9cf..2f2a45dbe05 100644 --- a/python/custreamz/dev_requirements.txt +++ b/python/custreamz/dev_requirements.txt @@ -3,8 +3,8 @@ flake8==3.8.3 black==19.10b0 isort==5.6.4 -dask==2021.9.1 -distributed==2021.9.1 +dask==2021.09.1 +distributed==2021.09.1 streamz python-confluent-kafka pytest diff --git a/python/dask_cudf/dev_requirements.txt b/python/dask_cudf/dev_requirements.txt index afcab224a2e..7d41184feae 100644 --- a/python/dask_cudf/dev_requirements.txt +++ b/python/dask_cudf/dev_requirements.txt @@ -1,7 +1,7 @@ # Copyright (c) 2021, NVIDIA CORPORATION. -dask==2021.9.1 -distributed==2021.9.1 +dask==2021.09.1 +distributed==2021.09.1 fsspec>=0.6.0 numba>=0.53.1 numpy diff --git a/python/dask_cudf/setup.py b/python/dask_cudf/setup.py index 7b88034173f..515469f8b6c 100644 --- a/python/dask_cudf/setup.py +++ b/python/dask_cudf/setup.py @@ -10,8 +10,8 @@ install_requires = [ "cudf", - "dask==2021.9.1", - "distributed==2021.9.1", + "dask==2021.09.1", + "distributed==2021.09.1", "fsspec>=0.6.0", "numpy", "pandas>=1.0,<1.4.0dev0", @@ -23,8 +23,8 @@ "pandas>=1.0,<1.4.0dev0", "pytest", "numba>=0.53.1", - "dask==2021.9.1", - "distributed==2021.9.1", + "dask==2021.09.1", + "distributed==2021.09.1", ] }