From e476563dff6f74331572a1054685b421f410cbd2 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Wed, 15 Oct 2025 15:49:23 -0400 Subject: [PATCH] update CHANGELOG.rst, fix blackdoc hook --- .pre-commit-config.yaml | 2 +- CHANGELOG.rst | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78a4eb96..a4498b32 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -46,7 +46,7 @@ repos: rev: v0.4.3 hooks: - id: blackdoc - additional_dependencies: ["black==25.1.0"] + additional_dependencies: ["black==25.9.0"] - repo: https://github.com/PyCQA/doc8 rev: v2.0.0 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3a3937ae..158bf3d3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,18 @@ Changelog History ================= +xskillscore v0.0.28 (2025-10-15) +-------------------------------- + +Bug Fixes +~~~~~~~~~ +- Fixed a bug introduced in v0.0.27 where `numpy` v1.x support was broken for some + algorithms. (:pr:`431`) `Trevor James Smith`_. +- Removed all `numpy.atleast_1d()` calls that were causing numerical differences in + p-value calculations with `numpy` v2.x and fixed several doctest expected outputs. + (:pr:`440`) `Aaron Spring`_. + + xskillscore v0.0.27 (2025-07-14) --------------------------------