Received: by mail.netbsd.org (Postfix, from userid 605) id CEF4984FB7; Wed, 24 Jan 2024 09:16:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0A4E484FAD for ; Wed, 24 Jan 2024 09:16:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id v5BoRJMYx7DX for ; Wed, 24 Jan 2024 09:16:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6F59184D68 for ; Wed, 24 Jan 2024 09:16:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 67F4CFA42; Wed, 24 Jan 2024 09:16:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706087818285910" MIME-Version: 1.0 Date: Wed, 24 Jan 2024 09:16:58 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-xarray To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240124091658.67F4CFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706087818285910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jan 24 09:16:58 UTC 2024 Modified Files: pkgsrc/math/py-xarray: Makefile distinfo Log Message: py-xarray: updated to 2024.1.1 v2024.01.1 (23 Jan, 2024) This release is to fix a bug with the rendering of the documentation, but it also includes changes to the handling of pandas frequency strings. Breaking changes - Following pandas, :py:meth:`infer_freq` will return ``"YE"``, instead of ``"Y"`` (formerly ``"A"``). This is to be consistent with the deprecation of the latter frequency string in pandas 2.2. Deprecations - Following pandas, the frequency string ``"Y"`` (formerly ``"A"``) is deprecated in favor of ``"YE"``. These strings are used, for example, in :py:func:`date_range`, :py:func:`cftime_range`, :py:meth:`DataArray.resample`, and :py:meth:`Dataset.resample` among others (:issue:`8612`, :pull:`8629`). Documentation - Pin ``sphinx-book-theme`` to ``1.0.1`` to fix a rendering issue with the sidebar in the docs. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/math/py-xarray/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/py-xarray/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706087818285910 Content-Disposition: inline Content-Length: 1559 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-xarray/Makefile diff -u pkgsrc/math/py-xarray/Makefile:1.17 pkgsrc/math/py-xarray/Makefile:1.18 --- pkgsrc/math/py-xarray/Makefile:1.17 Sat Jan 20 08:24:55 2024 +++ pkgsrc/math/py-xarray/Makefile Wed Jan 24 09:16:58 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2024/01/20 08:24:55 adam Exp $ +# $NetBSD: Makefile,v 1.18 2024/01/24 09:16:58 adam Exp $ -DISTNAME= xarray-2024.1.0 +DISTNAME= xarray-2024.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=x/xarray/} Index: pkgsrc/math/py-xarray/distinfo diff -u pkgsrc/math/py-xarray/distinfo:1.10 pkgsrc/math/py-xarray/distinfo:1.11 --- pkgsrc/math/py-xarray/distinfo:1.10 Sat Jan 20 08:24:55 2024 +++ pkgsrc/math/py-xarray/distinfo Wed Jan 24 09:16:58 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.10 2024/01/20 08:24:55 adam Exp $ +$NetBSD: distinfo,v 1.11 2024/01/24 09:16:58 adam Exp $ -BLAKE2s (xarray-2024.1.0.tar.gz) = 087d447919d485f89ed105dbbd0dd6a44d5cbd9864edc08501773aa079d661ec -SHA512 (xarray-2024.1.0.tar.gz) = 1a5c184e6547e867076cd4faf533476608de13c4cfdb7085362e93c974598ea29d42c8fa55374b4782cc36ab7d870d4b7174217b3854db367ae16772e7f37cc8 -Size (xarray-2024.1.0.tar.gz) = 3612457 bytes +BLAKE2s (xarray-2024.1.1.tar.gz) = 8f786ecfe830f10e612261442e073e10b3b493084fb7af2829df10bac72d4f9d +SHA512 (xarray-2024.1.1.tar.gz) = b6447ca2c80b3a3091ac2baba648fef4faa79ffff272360e9726b318b517ede9d2717d1b6f77f03fdacf55527233f1a37c0d114901fe1a265d3e435cf293a487 +Size (xarray-2024.1.1.tar.gz) = 3614037 bytes --_----------=_1706087818285910--