Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.
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 conda/recipes/ucx-py/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ context:
date_string: '${{ env.get("RAPIDS_DATE_STRING") }}'
py_version: ${{ env.get("RAPIDS_PY_VERSION") }}
py_buildstring: ${{ py_version | version_to_buildstring }}
head_rev: ${{ git.head_rev(".")[:8] }}
head_rev: '${{ git.head_rev(".")[:8] }}'

package:
name: ucx-py
Expand Down
12 changes: 10 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ dependencies:
cuda: "12.8"
packages:
- cuda-version=12.8
- matrix:
cuda: "12.9"
packages:
- cuda-version=12.9
cuda:
specific:
- output_types: conda
Expand Down Expand Up @@ -123,9 +127,13 @@ dependencies:
py: "3.12"
packages:
- python=3.12
- matrix:
py: "3.13"
packages:
- python=3.13
- matrix:
packages:
- python>=3.10,<3.13
- python>=3.10,<3.14
build_python:
common:
- output_types: [conda, requirements, pyproject]
Expand Down Expand Up @@ -229,7 +237,7 @@ dependencies:
- cloudpickle
- rapids-dask-dependency==25.6.*,>=0.0.0a0
- distributed
- numba>=0.59.1,<0.61.0a0
- numba>=0.59.1,<0.62.0a0
- pytest==7.*
- pytest-asyncio
- pytest-rerunfailures
Expand Down
8 changes: 4 additions & 4 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ Build Dependencies

conda create -n ucx -c conda-forge \
automake make libtool pkg-config \
"python=3.12" "setuptools>=64.0" "cython>=3.0.0"
"python=3.13" "setuptools>=64.0" "cython>=3.0.0"

.. note::
The Python version must be explicitly specified here, UCX-Py currently supports
Python versions 3.10, 3.11, and 3.12.
Python versions 3.10, 3.11, 3.12, and 3.13.

Test Dependencies
^^^^^^^^^^^^^^^^^
Expand Down Expand Up @@ -218,8 +218,8 @@ Installing UCX-Py from source in a pip-only environment has additional limitatio
UCX-Py with UCX from PyPI
^^^^^^^^^^^^^^^^^^^^^^^^^

CUDA-enabled builds of the UCX libraries are available from PyPI, under the names ``libucx-cu{11,12}``.
Notice that those builds do not currently include InfiniBand support, if InfiniBand is required you will
CUDA-enabled builds of the UCX libraries are available from PyPI, under the names ``libucx-cu{11,12}``.
Notice that those builds do not currently include InfiniBand support, if InfiniBand is required you will
need to provide a custom UCX install as described in the "UCX-Py with custom UCX install" section.

To build UCX-Py using those UCX packages (to avoid needing to build UCX from source), run the following.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test = [
"cudf==25.6.*,>=0.0.0a0",
"cupy-cuda12x>=12.0.0",
"distributed",
"numba>=0.59.1,<0.61.0a0",
"numba>=0.59.1,<0.62.0a0",
"pytest-asyncio",
"pytest-rerunfailures",
"pytest==7.*",
Expand Down
Loading