Skip to content
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
2 changes: 1 addition & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rapids-dependency-file-generator \
--file-key test_python \
--prepend-channel "${CPP_CHANNEL}" \
--prepend-channel "${PYTHON_CHANNEL}" \
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION};dependencies=${RAPIDS_DEPENDENCIES}" | tee env.yaml

rapids-mamba-retry env create --yes -f env.yaml -n test

Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies:
- cpp-argparse
- cuda-nvcc
- cuda-nvtx-dev
- cuda-python>=12.9.2,<13.0
- cuda-sanitizer-api
- cuda-version=12.9
- cudf==26.8.*,>=0.0.0a0
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies:
- cpp-argparse
- cuda-nvcc
- cuda-nvtx-dev
- cuda-python>=12.9.2,<13.0
- cuda-sanitizer-api
- cuda-version=12.9
- cudf==26.8.*,>=0.0.0a0
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-133_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies:
- cpp-argparse
- cuda-nvcc
- cuda-nvtx-dev
- cuda-python>=13.0.1,<14.0
- cuda-sanitizer-api
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-133_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies:
- cpp-argparse
- cuda-nvcc
- cuda-nvtx-dev
- cuda-python>=13.0.1,<14.0
- cuda-sanitizer-api
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
Expand Down
6 changes: 0 additions & 6 deletions conda/recipes/cuopt/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ requirements:
- rapids-build-backend >=0.4.0,<0.5.0
- rmm =${{ minor_version }}
- scikit-build-core>=0.11.0
- if: cuda_major == "12"
then: cuda-python >=12.9.2,<13.0
else: cuda-python >=13.0.1,<14.0
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cudf =${{ minor_version }}
Expand All @@ -100,9 +97,6 @@ requirements:
- cuda-nvcc-impl
# TODO: Add nvjitlink here
# xref: https://github.com/rapidsai/cudf/issues/12822
- if: cuda_major == "12"
then: cuda-python >=12.9.2,<13.0
else: cuda-python >=13.0.1,<14.0
ignore_run_exports:
by_name:
- cuda-version
Expand Down
21 changes: 10 additions & 11 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,16 @@ dependencies:
- pytest-cov
- pytest-rerunfailures
- pytest-xdist
specific:
- output_types: [conda, requirements, pyproject]
matrices:
- matrix:
dependencies: "oldest"
packages:
- numba-cuda==0.22.*
- numpy==2.0.*
- matrix:
packages:
test_python_cuopt:
common:
- output_types: [conda]
Expand All @@ -327,17 +337,6 @@ dependencies:
- &pandas pandas>=2.0
- *pyyaml
- scipy>=1.14.1
specific:
- output_types: [conda, requirements, pyproject]
matrices:
- matrix:
cuda: "12.*"
packages:
- cuda-python>=12.9.2,<13.0
# fallback to CUDA 13 versions if 'cuda' is '13.*' or not provided
- matrix:
packages:
- cuda-python>=13.0.1,<14.0

test_python_cuopt_server:
common:
Expand Down
1 change: 0 additions & 1 deletion python/cuopt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ authors = [
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"cuda-python>=13.0.1,<14.0",
"cudf==26.8.*,>=0.0.0a0",
"cupy-cuda13x[ctk]>=14.0.1,!=14.1.0",
"libcuopt==26.8.*,>=0.0.0a0",
Expand Down
Loading