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
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,7 @@ conda install -c rapidsai -c conda-forge \
cuxfilter python=3.13 cuda-version=12.9
```

Note: cuxfilter is supported only on Linux, and with Python versions 3.10, 3.11, 3.12, and 3.13.

> Above are sample install snippets for cuxfilter, see the [Get RAPIDS version picker](https://rapids.ai/start.html) for installing the latest `cuxfilter` version.
> Above are sample install snippets for cuxfilter, see the [RAPIDS installation docs](https://docs.rapids.ai/install/) for installing the latest `cuxfilter` version.

### PyPI

Expand All @@ -191,7 +189,7 @@ pip install cuxfilter-cu12 -extra-index-url=https://pypi.nvidia.com
pip install cuxfilter-cu12 -extra-index-url=https://pypi.nvidia.com
```

See the [Get RAPIDS version picker](https://rapids.ai/start.html) for more OS and version info.
See the [RAPIDS installation docs](https://docs.rapids.ai/install/) for more OS and version info.

### Build/Install from Source

Expand Down
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 @@ -36,7 +36,7 @@ dependencies:
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- python>=3.11,<3.14
- rapids-build-backend>=0.4.0,<0.5.0
- recommonmark
- setuptools>=77.0.0
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 @@ -36,7 +36,7 @@ dependencies:
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- python>=3.11,<3.14
- rapids-build-backend>=0.4.0,<0.5.0
- recommonmark
- setuptools>=77.0.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-131_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies:
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- python>=3.11,<3.14
- rapids-build-backend>=0.4.0,<0.5.0
- recommonmark
- setuptools>=77.0.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-131_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies:
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- python>=3.11,<3.14
- rapids-build-backend>=0.4.0,<0.5.0
- recommonmark
- setuptools>=77.0.0
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuxfilter/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ build:
requirements:
host:
- cuda-version =${{ cuda_version }}
- python >=3.10
- python >=3.11
- rapids-build-backend >=0.4.0,<0.5.0
- setuptools>=77.0.0
- pip
Expand Down
6 changes: 1 addition & 5 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,6 @@ dependencies:
specific:
- output_types: conda
matrices:
- matrix:
py: "3.10"
packages:
- python=3.10
- matrix:
py: "3.11"
packages:
Expand All @@ -187,7 +183,7 @@ dependencies:
- python=3.13
- matrix:
packages:
- python>=3.10,<3.14
- python>=3.11,<3.14
rapids_build_setuptools:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# SPDX-FileCopyrightText: Copyright (c) 2019-2025, NVIDIA CORPORATION. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2019-2026, NVIDIA CORPORATION. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[tool.ruff]
line-length = 79
target-version = "py310"
target-version = "py311"
include = ["*.py"]
extend-exclude = [
"__init__.py",
Expand Down
3 changes: 1 addition & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ authors = [
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"bokeh>=3.1,<=3.6.3",
"cudf==26.4.*,>=0.0.0a0",
Expand All @@ -40,7 +40,6 @@ classifiers = [
"Topic :: Database",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
Expand Down