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

[FIX] Update conda environment pinnings and update-versions.sh. #713

Merged
merged 2 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ sed_runner 's/'"branch-.*\/RAPIDS.cmake"'/'"branch-${NEXT_SHORT_TAG}\/RAPIDS.cma
sed_runner 's/'"branch-.*\/RAPIDS.cmake"'/'"branch-${NEXT_SHORT_TAG}\/RAPIDS.cmake"'/g' python/pylibraft/CMakeLists.txt

for FILE in conda/environments/*.yml; do
sed_runner "s/dask-cuda=${CURRENT_SHORT_TAG}/dask-cuda=${NEXT_SHORT_TAG}/g" ${FILE};
sed_runner "s/rapids-build-env=${CURRENT_SHORT_TAG}/rapids-build-env=${NEXT_SHORT_TAG}/g" ${FILE};
sed_runner "s/rapids-doc-env=${CURRENT_SHORT_TAG}/rapids-doc-env=${NEXT_SHORT_TAG}/g" ${FILE};
sed_runner "s/rapids-notebook-env=${CURRENT_SHORT_TAG}/rapids-notebook-env=${NEXT_SHORT_TAG}/g" ${FILE};
sed_runner "s/rmm=${CURRENT_SHORT_TAG}/rmm=${NEXT_SHORT_TAG}/g" ${FILE};
sed_runner "s/ucx-py=.*/ucx-py=${NEXT_UCX_PY_VERSION}/g" ${FILE};
done

Expand Down
10 changes: 5 additions & 5 deletions conda/environments/raft_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ dependencies:
- cython>=0.29,<0.30
- cmake>=3.20.1,!=3.23.0
- scikit-build>=0.13.1
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- rapids-build-env=22.08.*
- rapids-notebook-env=22.08.*
- rapids-doc-env=22.08.*
- rmm=22.08.*
- dask-cuda=22.08.*
- ucx>=1.12.1
- ucx-py=0.27.*
- ucx-proc=*=gpu
Expand Down
12 changes: 6 additions & 6 deletions conda/environments/raft_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ dependencies:
- cython>=0.29,<0.30
- cmake>=3.20.1,!=3.23.0
- scikit-build>=0.13.1
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- rapids-build-env=22.08.*
- rapids-notebook-env=22.08.*
- rapids-doc-env=22.08.*
- rmm=22.08.*
- dask-cuda=22.08.*
- ucx>=1.12.1
- ucx-py=0.27.*
- ucx-proc=*=gpu
Expand All @@ -28,7 +28,7 @@ dependencies:
- breathe
- git+https://github.com/dask/dask.git@main
- git+https://github.com/dask/distributed.git@main

# rapids-build-env, notebook-env and doc-env are defined in
# https://docs.rapids.ai/maintainers/depmgmt/

Expand Down
10 changes: 5 additions & 5 deletions conda/environments/raft_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ dependencies:
- cython>=0.29,<0.30
- cmake>=3.20.1,!=3.23.0
- scikit-build>=0.13.1
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- rapids-build-env=22.08.*
- rapids-notebook-env=22.08.*
- rapids-doc-env=22.08.*
- rmm=22.08.*
- dask-cuda=22.08.*
- ucx>=1.12.1
- ucx-py=0.27.*
- ucx-proc=*=gpu
Expand Down
10 changes: 5 additions & 5 deletions conda/environments/raft_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ dependencies:
- cython>=0.29,<0.30
- cmake>=3.20.1,!=3.23.0
- scikit-build>=0.13.1
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- rapids-build-env=22.08.*
- rapids-notebook-env=22.08.*
- rapids-doc-env=22.08.*
- rmm=22.08.*
- dask-cuda=22.08.*
- ucx>=1.12.1
- ucx-py=0.27.*
- ucx-proc=*=gpu
Expand Down