diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index edd89360a5..48f5da93e5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,7 @@ repos: - id: check-json - id: detect-private-key - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.5 + rev: v0.5.6 hooks: - id: ruff files: holoviews/|scripts/ diff --git a/holoviews/tests/ipython/test_notebooks.py b/holoviews/tests/ipython/test_notebooks.py index d23e5d0b6c..97c27d9dd3 100644 --- a/holoviews/tests/ipython/test_notebooks.py +++ b/holoviews/tests/ipython/test_notebooks.py @@ -6,6 +6,7 @@ import pytest pytest.importorskip("nbconvert") +pytest.importorskip("IPython") import nbconvert import nbformat diff --git a/pixi.toml b/pixi.toml index 8c9d9ad02a..56d0579808 100644 --- a/pixi.toml +++ b/pixi.toml @@ -135,7 +135,7 @@ NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS = "0" [feature.test-gpu.dependencies] cuda-version = "12.2.*" -cudf = "24.06.*" +cudf = "24.08.*" cupy = "*" cuspatial = "*" librmm = { version = "*", channel = "rapidsai" } diff --git a/pyproject.toml b/pyproject.toml index a95d6e4d5a..d9c18e4ab2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,6 +121,7 @@ filterwarnings = [ "ignore:unclosed file <_io.TextIOWrapper name='/dev/null' mode='w':ResourceWarning", # OK # 2024-07 "ignore:The (non_)?interactive_bk attribute was deprecated in Matplotlib 3.9", # OK - Only happening in debug mode + "ignore: Jitify is performing a one-time only warm::cupy", # OK ] [tool.coverage]