Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REVIEW] Pin dask and distributed for release #12695

Merged
merged 5 commits into from
Feb 6, 2023

Conversation

galipremsagar
Copy link
Contributor

@galipremsagar galipremsagar commented Feb 3, 2023

Description

This PR pins dask and distributed to 2023.1.1 for 23.02 release.

Checklist

  • I am familiar with the Contributing Guidelines.
  • New or existing tests cover these changes.
  • The documentation is up to date with these changes.

Copy link
Contributor

@msadang msadang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version changes look good.

@@ -18,11 +18,11 @@ if [ "${ARCH}" = "aarch64" ]; then
fi

# Install the latest version of dask and distributed
logger "pip install git+https://github.com/dask/distributed.git@main --upgrade --no-deps"
pip install "git+https://github.com/dask/distributed.git@main" --upgrade --no-deps
logger "pip install git+https://github.com/dask/[email protected] --upgrade --no-deps"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we update this file to use centralized bash logic that is more like the CI scripts?

# Dask & Distributed option to install main(nightly) or `conda-forge` packages.
export INSTALL_DASK_MAIN=0

# Dask version to install when `INSTALL_DASK_MAIN=0`
export DASK_STABLE_VERSION="2023.1.1"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 on this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, made the change 👍

@@ -35,7 +35,7 @@ export CONDA_BLD_DIR="$WORKSPACE/.conda-bld"

# 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=1
export INSTALL_DASK_MAIN=0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI This file isn't being used anymore -- we just haven't had a chance to delete the gpuCI job scripts yet, since the GitHub Actions transition. I'm still fine with making changes here, but we won't have to do that anymore once the old scripts are deleted.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, thanks for the update 👍

@codecov
Copy link

codecov bot commented Feb 3, 2023

Codecov Report

Base: 85.82% // Head: 85.82% // Decreases project coverage by -0.01% ⚠️

Coverage data is based on head (5d46268) compared to base (58e0fde).
Patch has no changes to coverable lines.

Additional details and impacted files
@@               Coverage Diff                @@
##           branch-23.02   #12695      +/-   ##
================================================
- Coverage         85.82%   85.82%   -0.01%     
================================================
  Files               158      158              
  Lines             25184    25184              
================================================
- Hits              21615    21614       -1     
- Misses             3569     3570       +1     
Impacted Files Coverage Δ
python/cudf/cudf/core/column/categorical.py 89.43% <0.00%> (-0.22%) ⬇️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

rapids-bot bot pushed a commit to rapidsai/cuml that referenced this pull request Feb 6, 2023
This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release.

xref: rapidsai/cudf#12695

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

Approvers:
  - Mark Sadang (https://github.com/msadang)
  - Dante Gama Dessavre (https://github.com/dantegd)

URL: #5198
rapids-bot bot pushed a commit to rapidsai/raft that referenced this pull request Feb 6, 2023
This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release.

xref: rapidsai/cudf#12695

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Corey J. Nolet (https://github.com/cjnolet)

Approvers:
  - Mark Sadang (https://github.com/msadang)
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #1242
rapids-bot bot pushed a commit to rapidsai/dask-cuda that referenced this pull request Feb 6, 2023
This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release.

xref: rapidsai/cudf#12695

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

Approvers:
  - Mark Sadang (https://github.com/msadang)
  - Peter Andreas Entschev (https://github.com/pentschev)

URL: #1106
@@ -18,11 +18,11 @@ if [ "${ARCH}" = "aarch64" ]; then
fi

# Install the latest version of dask and distributed
logger "pip install git+https://github.com/dask/distributed.git@main --upgrade --no-deps"
pip install "git+https://github.com/dask/distributed.git@main" --upgrade --no-deps
logger "pip install git+https://github.com/dask/[email protected] --upgrade --no-deps"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 on this.

Copy link
Member

@pentschev pentschev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've left a minor suggestion, but feel free to ignore. Otherwise LGTM, thanks so much @galipremsagar !

conda/recipes/dask-cudf/run_test.sh Outdated Show resolved Hide resolved
Copy link
Member

@pentschev pentschev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New changes LGTM, thanks @galipremsagar !

@raydouglass raydouglass merged commit 519e118 into rapidsai:branch-23.02 Feb 6, 2023
raydouglass pushed a commit to rapidsai/cugraph that referenced this pull request Feb 6, 2023
This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release.

xref: rapidsai/cudf#12695

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

Approvers:
   - Brad Rees (https://github.com/BradReesWork)
   - Jordan Jacobelli (https://github.com/Ethyling)
@bdice bdice mentioned this pull request Feb 6, 2023
jakirkham pushed a commit to jakirkham/cuml that referenced this pull request Feb 27, 2023
This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release.

xref: rapidsai/cudf#12695

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

Approvers:
  - Mark Sadang (https://github.com/msadang)
  - Dante Gama Dessavre (https://github.com/dantegd)

URL: rapidsai#5198
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3 - Ready for Review Ready for review by team breaking Breaking change improvement Improvement / enhancement to an existing function Python Affects Python cuDF API.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants