diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 650639fc2..caac9778a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,11 @@ Changelog v0.54.0 (unreleased) -------------------- -Contributors to this version: Éric Dupuis (:user:`coxipi`), Pascal Bourgault (:user:`aulemahal`). +Contributors to this version: Éric Dupuis (:user:`coxipi`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`). + +Breaking changes +^^^^^^^^^^^^^^^^ +* Due to a regression affecting symmetry of ``polyfit`` and ``polyval`` in `xarray`, `xclim` now requires `xarray>=2023.11.0,!=2024.10.0` (see: `pydata/xarray PR/9691 `_. (:pull:`1978`). Bug fixes ^^^^^^^^^ diff --git a/environment.yml b/environment.yml index 0a9e3f28f..a7d54a980 100644 --- a/environment.yml +++ b/environment.yml @@ -22,7 +22,7 @@ dependencies: - scikit-learn >=1.1.0 - scipy >=1.9.0 - statsmodels >=0.14.2 - - xarray >=2023.11.0 + - xarray >=2023.11.0,!=2024.10.0 - yamale >=5.0.0 # Extras - fastnanquantile >=0.0.2 diff --git a/pyproject.toml b/pyproject.toml index 004ec3087..2dcec8415 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ dependencies = [ "scikit-learn >=1.1.0", "scipy >=1.9.0", "statsmodels >=0.14.2", - "xarray >=2023.11.0", + "xarray >=2023.11.0,!=2024.10.0", "yamale >=5.0.0" ]