pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-xarray



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Oct 30 14:07:43 UTC 2025

Modified Files:
        pkgsrc/math/py-xarray: Makefile PLIST distinfo

Log Message:
py-xarray: updated to 2025.10.1

v2025.10.1 (October 7, 2025)

This release reverts a breaking change to Xarray's preferred netCDF backend.

Breaking changes

- Xarray's default engine for reading/writing netCDF files has been reverted to
  prefer netCDF4 over h5netcdf over scipy, which was the default before
  v2025.09.1. This change had larger implications for the ecosystem than we
  anticipated. We are still considering changing the default in the future, but
  will be a bit more careful about the implications. See :issue:`10657` and
  linked issues for discussion. The behavior can still be customized, e.g., with
  ``xr.set_options(netcdf_engine_order=['h5netcdf', 'netcdf4', 'scipy'])``.

New features

- Coordinates are ordered to match dims when displaying Xarray objects. (:pull:`10778`).

Bug fixes

- Fix error raised when writing scalar variables to Zarr with ``region={}``


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 pkgsrc/math/py-xarray/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/math/py-xarray/PLIST
cvs rdiff -u -r1.26 -r1.27 pkgsrc/math/py-xarray/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-xarray/Makefile
diff -u pkgsrc/math/py-xarray/Makefile:1.37 pkgsrc/math/py-xarray/Makefile:1.38
--- pkgsrc/math/py-xarray/Makefile:1.37 Thu Oct  9 07:57:50 2025
+++ pkgsrc/math/py-xarray/Makefile      Thu Oct 30 14:07:43 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.37 2025/10/09 07:57:50 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2025/10/30 14:07:43 adam Exp $
 
-DISTNAME=      xarray-2025.8.0
+DISTNAME=      xarray-2025.10.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=x/xarray/}

Index: pkgsrc/math/py-xarray/PLIST
diff -u pkgsrc/math/py-xarray/PLIST:1.19 pkgsrc/math/py-xarray/PLIST:1.20
--- pkgsrc/math/py-xarray/PLIST:1.19    Thu Jul 17 08:20:10 2025
+++ pkgsrc/math/py-xarray/PLIST Thu Oct 30 14:07:43 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2025/07/17 08:20:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.20 2025/10/30 14:07:43 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
@@ -53,6 +53,9 @@ ${PYSITELIB}/xarray/backends/scipy_.pyo
 ${PYSITELIB}/xarray/backends/store.py
 ${PYSITELIB}/xarray/backends/store.pyc
 ${PYSITELIB}/xarray/backends/store.pyo
+${PYSITELIB}/xarray/backends/writers.py
+${PYSITELIB}/xarray/backends/writers.pyc
+${PYSITELIB}/xarray/backends/writers.pyo
 ${PYSITELIB}/xarray/backends/zarr.py
 ${PYSITELIB}/xarray/backends/zarr.pyc
 ${PYSITELIB}/xarray/backends/zarr.pyo
@@ -182,9 +185,6 @@ ${PYSITELIB}/xarray/core/dataset_variabl
 ${PYSITELIB}/xarray/core/datatree.py
 ${PYSITELIB}/xarray/core/datatree.pyc
 ${PYSITELIB}/xarray/core/datatree.pyo
-${PYSITELIB}/xarray/core/datatree_io.py
-${PYSITELIB}/xarray/core/datatree_io.pyc
-${PYSITELIB}/xarray/core/datatree_io.pyo
 ${PYSITELIB}/xarray/core/datatree_mapping.py
 ${PYSITELIB}/xarray/core/datatree_mapping.pyc
 ${PYSITELIB}/xarray/core/datatree_mapping.pyo
@@ -347,6 +347,7 @@ ${PYSITELIB}/xarray/testing/assertions.p
 ${PYSITELIB}/xarray/testing/strategies.py
 ${PYSITELIB}/xarray/testing/strategies.pyc
 ${PYSITELIB}/xarray/testing/strategies.pyo
+${PYSITELIB}/xarray/tests/CLAUDE.md
 ${PYSITELIB}/xarray/tests/__init__.py
 ${PYSITELIB}/xarray/tests/__init__.pyc
 ${PYSITELIB}/xarray/tests/__init__.pyo

Index: pkgsrc/math/py-xarray/distinfo
diff -u pkgsrc/math/py-xarray/distinfo:1.26 pkgsrc/math/py-xarray/distinfo:1.27
--- pkgsrc/math/py-xarray/distinfo:1.26 Fri Aug 22 09:04:09 2025
+++ pkgsrc/math/py-xarray/distinfo      Thu Oct 30 14:07:43 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.26 2025/08/22 09:04:09 adam Exp $
+$NetBSD: distinfo,v 1.27 2025/10/30 14:07:43 adam Exp $
 
-BLAKE2s (xarray-2025.8.0.tar.gz) = 1adf2b4cecea0cb4dfe5912422e1a81c8c6df0750315c5c671ab2581df57c444
-SHA512 (xarray-2025.8.0.tar.gz) = 2ace4ae6736a5cde298f7d0da6b704326fa5b28d758744e0db022cc3e9ea6514ac447c5d7762fc273bc192ad7b31517edc0cda7a16302c3e9a63d5c952b1bcd2
-Size (xarray-2025.8.0.tar.gz) = 3034425 bytes
+BLAKE2s (xarray-2025.10.1.tar.gz) = 250daebeb138e656982e0e29e5a9ee994b779574a9bd40e4ec6d4e8dedbd4321
+SHA512 (xarray-2025.10.1.tar.gz) = aa4e0678a7ad4fa18ab1c9cbb6d8ed0ffe99b5461f1b0797e54ad34edf9de0270ee19d9db4c20399de2d7a3a7f3023088a66e4e8585278f1c7db5572651afd1f
+Size (xarray-2025.10.1.tar.gz) = 3058736 bytes



Home | Main Index | Thread Index | Old Index