From 00220d8d24a4ada0ac8d30b6875004af5b03fdc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Tue, 28 Jan 2025 17:20:25 +0100 Subject: [PATCH] chore: Update pre-commit (#1400) --- .pre-commit-config.yaml | 4 ++-- datashader/tests/test_pandas.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 60856c37c..a149c51bd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,12 +13,12 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.2 + rev: v0.9.3 hooks: - id: ruff files: datashader/ - repo: https://github.com/codespell-project/codespell - rev: v2.3.0 + rev: v2.4.0 hooks: - id: codespell additional_dependencies: diff --git a/datashader/tests/test_pandas.py b/datashader/tests/test_pandas.py index 6faed6e8f..52b7e8b4a 100644 --- a/datashader/tests/test_pandas.py +++ b/datashader/tests/test_pandas.py @@ -2299,7 +2299,7 @@ def test_area_to_line_autorange_gap(): # Using local versions of nan-aware combinations rather than those in -# utils.py. These versions are not always applicable, e.g. if summming +# utils.py. These versions are not always applicable, e.g. if summing # a positive and negative value to total exactly zero will be wrong here. def nanmax(arr0, arr1): mask = np.logical_and(np.isnan(arr0), np.isnan(arr1))