Skip to content
Open
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 conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- cuda-nvcc
- cuda-version=12.9
- cudf==26.6.*,>=0.0.0a0
- cupy>=13.6.0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
- cxx-compiler
- cython>=3.2.2
- dask-cuda==26.6.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- cuda-nvcc
- cuda-version=12.9
- cudf==26.6.*,>=0.0.0a0
- cupy>=13.6.0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
- cxx-compiler
- cython>=3.2.2
- dask-cuda==26.6.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-132_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- cuda-nvcc
- cuda-version=13.2
- cudf==26.6.*,>=0.0.0a0
- cupy>=13.6.0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
- cxx-compiler
- cython>=3.2.2
- dask-cuda==26.6.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-132_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- cuda-nvcc
- cuda-version=13.2
- cudf==26.6.*,>=0.0.0a0
- cupy>=13.6.0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
- cxx-compiler
- cython>=3.2.2
- dask-cuda==26.6.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/ucxx/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ outputs:
- ${{ pin_compatible("rmm", upper_bound="x.x") }}
- libucxx =${{ version }}
run_constraints:
- cupy >=13.6.0
- cupy >=13.6.0,!=14.0.0,!=14.1.0
ignore_run_exports:
by_name:
- cuda-cudart
Expand Down
6 changes: 3 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -436,18 +436,18 @@ dependencies:
common:
- output_types: conda
packages:
- cupy>=13.6.0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
specific:
- output_types: [requirements, pyproject]
matrices:
- matrix:
cuda: "12.*"
packages:
- cupy-cuda12x>=13.6.0
- cupy-cuda12x>=13.6.0,!=14.0.0,!=14.1.0
# fallback to CUDA 13 versions if 'cuda' is '13.*' or not provided
- matrix:
packages:
- &cupy_cuda13 cupy-cuda13x>=13.6.0
- &cupy_cuda13 cupy-cuda13x>=13.6.0,!=14.0.0,!=14.1.0
depends_on_librmm:
common:
- output_types: conda
Expand Down
2 changes: 1 addition & 1 deletion python/distributed-ucxx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ docs = [
]
test = [
"cudf==26.6.*,>=0.0.0a0",
"cupy-cuda13x>=13.6.0",
"cupy-cuda13x>=13.6.0,!=14.0.0,!=14.1.0",
"numba-cuda>=0.22.1,<0.29.0",
"numpy>=1.23,<3.0",
"pytest",
Expand Down
2 changes: 1 addition & 1 deletion python/ucxx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ucxx = "ucxx"
test = [
"cloudpickle",
"cudf==26.6.*,>=0.0.0a0",
"cupy-cuda13x>=13.6.0",
"cupy-cuda13x>=13.6.0,!=14.0.0,!=14.1.0",
"numba-cuda>=0.22.1,<0.29.0",
"pytest",
"pytest-asyncio>=1.0.0",
Expand Down
Loading