Skip to content

Commit

Permalink
try adding back some alpha floors
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Sep 19, 2024
1 parent 0e145de commit de8c29c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
16 changes: 10 additions & 6 deletions ci/use_conda_packages_from_prs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,23 @@ CUDF_PYTHON_CHANNEL=$(rapids-get-pr-conda-artifact cudf 16806 python)

UCXX_CHANNEL=$(rapids-get-pr-conda-artifact ucxx 278 cpp)

# LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 cpp)
# RAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 python)

LIBCUSPATIAL_CHANNEL=$(rapids-get-pr-conda-artifact cuspatial 1441 cpp)
CUSPATIAL_CHANNEL=$(rapids-get-pr-conda-artifact cuspatial 1441 python)

LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 cpp)
RAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2433 python)

LIBCUGRAPH_CHANNEL=$(rapids-get-pr-conda-artifact cugraph 4655 cpp)
CUGRAPH_CHANNEL=$(rapids-get-pr-conda-artifact cugraph 4655 python)

conda config --system --add channels "${LIBRMM_CHANNEL}"
conda config --system --add channels "${RMM_CHANNEL}"
conda config --system --add channels "${CUDF_CPP_CHANNEL}"
conda config --system --add channels "${CUDF_PYTHON_CHANNEL}"
conda config --system --add channels "${UCXX_CHANNEL}"
# conda config --system --add channels "${LIBRAFT_CHANNEL}"
# conda config --system --add channels "${RAFT_CHANNEL}"
conda config --system --add channels "${LIBCUSPATIAL_CHANNEL}"
conda config --system --add channels "${CUSPATIAL_CHANNEL}"

conda config --system --add channels "${LIBRAFT_CHANNEL}"
conda config --system --add channels "${RAFT_CHANNEL}"
conda config --system --add channels "${LIBCUGRAPH_CHANNEL}"
conda config --system --add channels "${CUGRAPH_CHANNEL}"
12 changes: 8 additions & 4 deletions conda/recipes/rapids/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,23 @@ requirements:
- numpy {{ numpy_version }}
- nvtx {{ nvtx_version }}
- python
- cudf ={{ major_minor_version }}.*
# TODO: remove this floor on specific alpha version in 24.12
- cudf ={{ major_minor_version }}.*,>=24.10.00a345
- cuvs ={{ major_minor_version }}.*
- cugraph ={{ major_minor_version }}.*
- nx-cugraph ={{ major_minor_version }}.*
- cuml ={{ major_minor_version }}.*
- cucim ={{ major_minor_version }}.*
- cuspatial ={{ major_minor_version }}.*
- cuproj ={{ major_minor_version }}.*
# TODO: remove this floor on specific alpha version in 24.12
- cuspatial ={{ major_minor_version }}.*,>=24.10.00a63
# TODO: remove this floor on specific alpha version in 24.12
- cuproj ={{ major_minor_version }}.*,>=24.10.00a63
- custreamz ={{ major_minor_version }}.*
- cuxfilter ={{ major_minor_version }}.*
- dask-cuda ={{ major_minor_version }}.*
- rapids-xgboost ={{ major_minor_version }}.*
- rmm ={{ major_minor_version }}.*
# TODO: remove this floor on specific alpha version in 24.12
- rmm ={{ major_minor_version }}.*,>=24.10.00a57
- pylibcugraph ={{ major_minor_version }}.*
- libcugraph_etl ={{ major_minor_version }}.*
{% if cuda_major == "11" %}
Expand Down

0 comments on commit de8c29c

Please sign in to comment.