From c241177afc807c3a60255be4559e6c3297a27488 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 28 Jul 2021 13:42:52 -0500 Subject: [PATCH] Remove max version pin for `dask` & `distributed` on development branch (#8881) This PR will remove max version pinning for `dask` & `distributed` for development purposes. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - https://github.com/jakirkham - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/cudf/pull/8881 --- 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 607a00219e3..70bbe88a00c 100644 --- a/conda/environments/cudf_dev_cuda11.0.yml +++ b/conda/environments/cudf_dev_cuda11.0.yml @@ -40,8 +40,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask>=2021.6.0,<=2021.07.1 - - distributed>=2021.6.0,<=2021.07.1 + - dask>=2021.6.0 + - distributed>=2021.6.0 - streamz - arrow-cpp=4.0.1 - 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 ab6f5467271..6d2abdda449 100644 --- a/conda/environments/cudf_dev_cuda11.2.yml +++ b/conda/environments/cudf_dev_cuda11.2.yml @@ -40,8 +40,8 @@ dependencies: - mypy=0.782 - typing_extensions - pre_commit - - dask>=2021.6.0,<=2021.07.1 - - distributed>=2021.6.0,<=2021.07.1 + - dask>=2021.6.0 + - distributed>=2021.6.0 - streamz - arrow-cpp=4.0.1 - dlpack>=0.5,<0.6.0a0 diff --git a/conda/recipes/custreamz/meta.yaml b/conda/recipes/custreamz/meta.yaml index c98e61f6100..158e34684b4 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.07.1 - - distributed>=2021.6.0,<=2021.07.1 + - dask>=2021.6.0 + - distributed>=2021.6.0 - python-confluent-kafka - cudf_kafka {{ version }} diff --git a/conda/recipes/dask-cudf/meta.yaml b/conda/recipes/dask-cudf/meta.yaml index af43f9ed2eb..216acb7e068 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.07.1 - - distributed>=2021.6.0,<=2021.07.1 + - dask>=2021.6.0 + - distributed>=2021.6.0 run: - python - cudf {{ version }} - - dask>=2021.6.0,<=2021.07.1 - - distributed>=2021.6.0,<=2021.07.1 + - dask>=2021.6.0 + - distributed>=2021.6.0 test: requires: diff --git a/python/custreamz/dev_requirements.txt b/python/custreamz/dev_requirements.txt index 3f5e3f84fd4..61e4817b1c2 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.07.1 -distributed>=2021.6.0,<=2021.07.1 +dask>=2021.6.0 +distributed>=2021.6.0 streamz python-confluent-kafka pytest diff --git a/python/dask_cudf/dev_requirements.txt b/python/dask_cudf/dev_requirements.txt index ec530893b0d..cdd17d86649 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.07.1 -distributed>=2021.6.0,<=2021.07.1 +dask>=2021.6.0 +distributed>=2021.6.0 fsspec>=0.6.0 numba>=0.53.1 numpy diff --git a/python/dask_cudf/setup.py b/python/dask_cudf/setup.py index b17f1bc7463..a714dd98904 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.07.1", - "distributed>=2021.6.0,<=2021.07.1", + "dask>=2021.6.0", + "distributed>=2021.6.0", "fsspec>=0.6.0", "numpy", "pandas>=1.0,<1.3.0dev0", @@ -23,8 +23,8 @@ "pandas>=1.0,<1.3.0dev0", "pytest", "numba>=0.53.1", - "dask>=2021.6.0,<=2021.07.1", - "distributed>=2021.6.0,<=2021.07.1", + "dask>=2021.6.0", + "distributed>=2021.6.0", ] }