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
5 changes: 4 additions & 1 deletion conda/recipes/ucxx/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ outputs:
- ${{ pin_subpackage("libucxx", exact=True) }}
- cuda-cudart-dev
run:
- numba >=0.59.1,<0.62.0a0
- numba-cuda >=0.14.0,<0.15.0a0
- numpy >=1.23,<3.0a0
- pynvml >=12.0.0,<13.0.0a0
- python =${{ python }}
Expand All @@ -269,7 +271,6 @@ outputs:
- ${{ pin_subpackage("libucxx", exact=True) }}
run_constraints:
- cupy >=9.5.0
- numba >=0.59.1,<0.62.0a0
ignore_run_exports:
by_name:
- cuda-cudart
Expand Down Expand Up @@ -387,6 +388,8 @@ outputs:
- setuptools
- wheel
run:
- numba >=0.59.1,<0.62.0a0
- numba-cuda >=0.14.0,<0.15.0a0
- python
- rapids-dask-dependency ${{ rapids_version }}
- ${{ pin_subpackage("ucxx", upper_bound="x.x") }}
Expand Down
28 changes: 14 additions & 14 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -285,20 +285,32 @@ dependencies:
packages:
- &numpy numpy>=1.23,<3.0a0
- pynvml>=12.0.0,<13.0.0a0
- output_types: [conda]
packages:
- &numba-cuda-dep numba-cuda>=0.14.0,<0.15.0a0
specific:
- output_types: [requirements, pyproject]
matrices:
- matrix: {cuda: "12.*"}
packages:
- &numba-cuda-cu12-dep numba-cuda[cu12]>=0.14.0,<0.15.0a0
- matrix: # Fallback for no matrix
packages:
- *numba-cuda-cu12-dep
run_python_distributed_ucxx:
common:
- output_types: [conda, requirements, pyproject]
packages:
- rapids-dask-dependency==25.10.*,>=0.0.0a0
- output_types: [conda]
packages:
- &numba-cuda numba-cuda>=0.14.0,<0.15.0a0
- *numba-cuda-dep
specific:
- output_types: [requirements, pyproject]
matrices:
- matrix: {cuda: "12.*"}
packages:
- &numba-cuda-cu12-dep numba-cuda[cu12]>=0.14.0,<0.15.0a0
- *numba-cuda-cu12-dep
- matrix: # Fallback for no matrix
packages:
- *numba-cuda-cu12-dep
Expand All @@ -316,18 +328,6 @@ dependencies:
- pytest-asyncio>=1.0.0
- pytest-rerunfailures
- rapids-dask-dependency==25.10.*,>=0.0.0a0
- output_types: [conda]
packages:
- *numba-cuda
specific:
- output_types: [requirements, pyproject]
matrices:
- matrix: {cuda: "12.*"}
packages:
- *numba-cuda-cu12-dep
- matrix: # Fallback for no matrix
packages:
- *numba-cuda-cu12-dep
test_python_distributed_ucxx:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
2 changes: 1 addition & 1 deletion python/ucxx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ license = { text = "BSD-3-Clause" }
requires-python = ">=3.10"
dependencies = [
"libucxx==0.46.*,>=0.0.0a0",
"numba-cuda[cu12]>=0.14.0,<0.15.0a0",
"numpy>=1.23,<3.0a0",
"pynvml>=12.0.0,<13.0.0a0",
"rmm==25.10.*,>=0.0.0a0",
Expand All @@ -41,7 +42,6 @@ test = [
"cloudpickle",
"cudf==25.10.*,>=0.0.0a0",
"cupy-cuda12x>=12.0.0",
"numba-cuda[cu12]>=0.14.0,<0.15.0a0",
"pytest",
"pytest-asyncio>=1.0.0",
"pytest-rerunfailures",
Expand Down