Skip to content

Commit

Permalink
Unpin dask and distributed for development (#1110)
Browse files Browse the repository at this point in the history
This PR unpins `dask` and `distributed` for `23.04` development.


xref: rapidsai/cudf#12710

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

Approvers:
  - Peter Andreas Entschev (https://github.com/pentschev)
  - Ray Douglass (https://github.com/raydouglass)

URL: #1110
  • Loading branch information
galipremsagar authored Feb 10, 2023
1 parent 7d4d1c7 commit b0e4f2d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export GPUCI_CONDA_RETRY_SLEEP=30

# Whether to keep `dask/label/dev` channel in the env. If INSTALL_DASK_MAIN=0,
# `dask/label/dev` channel is removed.
export INSTALL_DASK_MAIN=0
export INSTALL_DASK_MAIN=1

# Dask version to install when `INSTALL_DASK_MAIN=0`
export DASK_STABLE_VERSION="2023.1.1"
Expand Down
2 changes: 1 addition & 1 deletion ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1

# Install dask and distributed from main branch. Usually needed during
# development time and disabled before a new dask-cuda release.
export INSTALL_DASK_MAIN=0
export INSTALL_DASK_MAIN=1

# Dask version to install when `INSTALL_DASK_MAIN=0`
export DASK_STABLE_VERSION="2023.1.1"
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ dependencies:
common:
- output_types: [conda, requirements]
packages:
- dask==2023.1.1
- distributed==2023.1.1
- dask>=2023.1.1
- distributed>=2023.1.1
- numba>=0.54
- numpy>=1.18.0
- pandas>=1.0
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ authors = [
license = { text = "Apache-2.0" }
requires-python = ">=3.8"
dependencies = [
"dask ==2023.1.1",
"distributed ==2023.1.1",
"dask >=2023.1.1",
"distributed >=2023.1.1",
"pynvml >=11.0.0",
"numpy >=1.18.0",
"numba >=0.54",
Expand Down

0 comments on commit b0e4f2d

Please sign in to comment.