Skip to content

Commit

Permalink
Unpin dask and distributed in CI (#9307)
Browse files Browse the repository at this point in the history
This PR unpins `dask` and `distributed` in CI.

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Charles Blackmon-Luca (https://github.com/charlesbluca)
  - AJ Schmidt (https://github.com/ajschmidt8)
  - https://github.com/jakirkham

URL: #9307
  • Loading branch information
galipremsagar authored Sep 27, 2021
1 parent fd77ca6 commit 4de968e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion ci/benchmark/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export GBENCH_BENCHMARKS_DIR="$WORKSPACE/cpp/build/gbenchmarks/"
export LIBCUDF_KERNEL_CACHE_PATH="$HOME/.jitify-cache"

# Dask & Distributed git tag
export DASK_DISTRIBUTED_GIT_TAG='2021.09.1'
export DASK_DISTRIBUTED_GIT_TAG='main'

function remove_libcudf_kernel_cache_dir {
EXITCODE=$?
Expand Down
2 changes: 1 addition & 1 deletion ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export GIT_DESCRIBE_TAG=`git describe --tags`
export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'`

# Dask & Distributed git tag
export DASK_DISTRIBUTED_GIT_TAG='2021.09.1'
export DASK_DISTRIBUTED_GIT_TAG='main'

################################################################################
# TRAP - Setup trap for removing jitify cache
Expand Down
8 changes: 4 additions & 4 deletions conda/environments/cudf_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask=2021.09.1
- distributed=2021.09.1
- dask>=2021.09.1
- distributed>=2021.09.1
- streamz
- arrow-cpp=5.0.0
- dlpack>=0.5,<0.6.0a0
Expand All @@ -58,7 +58,7 @@ dependencies:
- transformers
- pydata-sphinx-theme
- pip:
- git+https://github.com/dask/dask.git@2021.09.1
- git+https://github.com/dask/distributed.git@2021.09.1
- git+https://github.com/dask/dask.git@main
- git+https://github.com/dask/distributed.git@main
- git+https://github.com/python-streamz/streamz.git@master
- pyorc
8 changes: 4 additions & 4 deletions conda/environments/cudf_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ dependencies:
- mypy=0.782
- typing_extensions
- pre_commit
- dask=2021.09.1
- distributed=2021.09.1
- dask>=2021.09.1
- distributed>=2021.09.1
- streamz
- arrow-cpp=5.0.0
- dlpack>=0.5,<0.6.0a0
Expand All @@ -58,7 +58,7 @@ dependencies:
- transformers
- pydata-sphinx-theme
- pip:
- git+https://github.com/dask/dask.git@2021.09.1
- git+https://github.com/dask/distributed.git@2021.09.1
- git+https://github.com/dask/dask.git@main
- git+https://github.com/dask/distributed.git@main
- git+https://github.com/python-streamz/streamz.git@master
- pyorc
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.09.1
- distributed=2021.09.1
- dask>=2021.09.1
- distributed>=2021.09.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.09.1
- distributed=2021.09.1
- dask>=2021.09.1
- distributed>=2021.09.1
run:
- python
- cudf {{ version }}
- dask=2021.09.1
- distributed=2021.09.1
- dask>=2021.09.1
- distributed>=2021.09.1

test: # [linux64]
requires: # [linux64]
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.09.1
distributed==2021.09.1
dask>=2021.09.1
distributed>=2021.09.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.09.1
distributed==2021.09.1
dask>=2021.09.1
distributed>=2021.09.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.09.1",
"distributed==2021.09.1",
"dask>=2021.09.1",
"distributed>=2021.09.1",
"fsspec>=0.6.0",
"numpy",
"pandas>=1.0,<1.4.0dev0",
Expand All @@ -23,8 +23,8 @@
"pandas>=1.0,<1.4.0dev0",
"pytest",
"numba>=0.53.1",
"dask==2021.09.1",
"distributed==2021.09.1",
"dask>=2021.09.1",
"distributed>=2021.09.1",
]
}

Expand Down

0 comments on commit 4de968e

Please sign in to comment.