Received: by mail.netbsd.org (Postfix, from userid 605) id 97B7484DB8; Fri, 7 May 2021 19:14:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D285184D93 for ; Fri, 7 May 2021 19:14:37 +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 d1apq3GyjcTC for ; Fri, 7 May 2021 19:14:37 +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 F3AA384CFC for ; Fri, 7 May 2021 19:14:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E6574FA95; Fri, 7 May 2021 19:14:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620414876168400" MIME-Version: 1.0 Date: Fri, 7 May 2021 19:14:36 +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: <20210507191436.E6574FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620414876168400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 7 19:14:36 UTC 2021 Modified Files: pkgsrc/math/py-xarray: Makefile PLIST distinfo Log Message: py-xarray: updated to 0.18.0 v0.18.0 (6 May 2021) This release brings a few important performance improvements, a wide range of usability upgrades, lots of bug fixes, and some new features. These include a plugin API to add backend engines, a new theme for the documentation, curve fitting methods, and several new plotting functions. v0.17.0 (24 Feb 2021) This release brings a few important performance improvements, a wide range of usability upgrades, lots of bug fixes, and some new features. These include better cftime support, a new quiver plot, better unstack performance, more efficient memory use in rolling operations, and some python packaging improvements. We also have a few documentation improvements (and more planned!). v0.16.2 (30 Nov 2020) This release brings the ability to write to limited regions of zarr files, open zarr files with :py:func:`open_dataset` and :py:func:`open_mfdataset`, increased support for propagating attrs using the keep_attrs flag, as well as numerous bugfixes and documentation improvements. v0.16.1 (2020-09-20) This patch release fixes an incompatibility with a recent pandas change, which was causing an issue indexing with a datetime64. It also includes improvements to rolling, to_dataframe, cov & corr methods and bug fixes. Our documentation has a number of improvements, including fixing all doctests and confirming their accuracy on every commit. v0.16.0 (2020-07-11) This release adds xarray.cov & xarray.corr for covariance & correlation respectively; the idxmax & idxmin methods, the polyfit method & xarray.polyval for fitting polynomials, as well as a number of documentation improvements, other features, and bug fixes. Many thanks to all 44 contributors who contributed to this release: To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/py-xarray/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-xarray/PLIST \ pkgsrc/math/py-xarray/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620414876168400 Content-Disposition: inline Content-Length: 6217 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.6 pkgsrc/math/py-xarray/Makefile:1.7 --- pkgsrc/math/py-xarray/Makefile:1.6 Fri Apr 9 15:42:35 2021 +++ pkgsrc/math/py-xarray/Makefile Fri May 7 19:14:36 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2021/04/09 15:42:35 tnn Exp $ +# $NetBSD: Makefile,v 1.7 2021/05/07 19:14:36 adam Exp $ -DISTNAME= xarray-0.15.1 +DISTNAME= xarray-0.18.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=x/xarray/} @@ -10,16 +10,17 @@ HOMEPAGE= https://github.com/pydata/xarr COMMENT= N-D labeled arrays and datasets in Python LICENSE= apache-2.0 -BUILD_DEPENDS+= ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=1.15.0:../../devel/py-setuptools_scm -DEPENDS+= ${PYPKGPREFIX}-numpy>=1.0:../../math/py-numpy -DEPENDS+= ${PYPKGPREFIX}-pandas>=0.18.1:../../math/py-pandas +DEPENDS+= ${PYPKGPREFIX}-numpy>=1.17:../../math/py-numpy +DEPENDS+= ${PYPKGPREFIX}-pandas>=1.0:../../math/py-pandas +DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.4:../../devel/py-setuptools +TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 36 27 # py-pandads -PYTHON_VERSIONED_DEPENDENCIES+= setuptools +PYSETUPTESTTARGET= pytest + +PYTHON_VERSIONS_INCOMPATIBLE= 27 36 # py-pandas .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-xarray/PLIST diff -u pkgsrc/math/py-xarray/PLIST:1.2 pkgsrc/math/py-xarray/PLIST:1.3 --- pkgsrc/math/py-xarray/PLIST:1.2 Sat Apr 11 13:47:08 2020 +++ pkgsrc/math/py-xarray/PLIST Fri May 7 19:14:36 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2020/04/11 13:47:08 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/05/07 19:14:36 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -41,6 +41,9 @@ ${PYSITELIB}/xarray/backends/netCDF4_.py ${PYSITELIB}/xarray/backends/netcdf3.py ${PYSITELIB}/xarray/backends/netcdf3.pyc ${PYSITELIB}/xarray/backends/netcdf3.pyo +${PYSITELIB}/xarray/backends/plugins.py +${PYSITELIB}/xarray/backends/plugins.pyc +${PYSITELIB}/xarray/backends/plugins.pyo ${PYSITELIB}/xarray/backends/pseudonetcdf_.py ${PYSITELIB}/xarray/backends/pseudonetcdf_.pyc ${PYSITELIB}/xarray/backends/pseudonetcdf_.pyo @@ -56,6 +59,9 @@ ${PYSITELIB}/xarray/backends/rasterio_.p ${PYSITELIB}/xarray/backends/scipy_.py ${PYSITELIB}/xarray/backends/scipy_.pyc ${PYSITELIB}/xarray/backends/scipy_.pyo +${PYSITELIB}/xarray/backends/store.py +${PYSITELIB}/xarray/backends/store.pyc +${PYSITELIB}/xarray/backends/store.pyo ${PYSITELIB}/xarray/backends/zarr.py ${PYSITELIB}/xarray/backends/zarr.pyc ${PYSITELIB}/xarray/backends/zarr.pyo @@ -68,6 +74,9 @@ ${PYSITELIB}/xarray/coding/cftime_offset ${PYSITELIB}/xarray/coding/cftimeindex.py ${PYSITELIB}/xarray/coding/cftimeindex.pyc ${PYSITELIB}/xarray/coding/cftimeindex.pyo +${PYSITELIB}/xarray/coding/frequencies.py +${PYSITELIB}/xarray/coding/frequencies.pyc +${PYSITELIB}/xarray/coding/frequencies.pyo ${PYSITELIB}/xarray/coding/strings.py ${PYSITELIB}/xarray/coding/strings.pyc ${PYSITELIB}/xarray/coding/strings.pyo @@ -86,6 +95,10 @@ ${PYSITELIB}/xarray/convert.pyo ${PYSITELIB}/xarray/core/__init__.py ${PYSITELIB}/xarray/core/__init__.pyc ${PYSITELIB}/xarray/core/__init__.pyo +${PYSITELIB}/xarray/core/_typed_ops.py +${PYSITELIB}/xarray/core/_typed_ops.pyc +${PYSITELIB}/xarray/core/_typed_ops.pyi +${PYSITELIB}/xarray/core/_typed_ops.pyo ${PYSITELIB}/xarray/core/accessor_dt.py ${PYSITELIB}/xarray/core/accessor_dt.pyc ${PYSITELIB}/xarray/core/accessor_dt.pyo @@ -284,6 +297,9 @@ ${PYSITELIB}/xarray/tests/test_concat.py ${PYSITELIB}/xarray/tests/test_conventions.py ${PYSITELIB}/xarray/tests/test_conventions.pyc ${PYSITELIB}/xarray/tests/test_conventions.pyo +${PYSITELIB}/xarray/tests/test_cupy.py +${PYSITELIB}/xarray/tests/test_cupy.pyc +${PYSITELIB}/xarray/tests/test_cupy.pyo ${PYSITELIB}/xarray/tests/test_dask.py ${PYSITELIB}/xarray/tests/test_dask.pyc ${PYSITELIB}/xarray/tests/test_dask.pyo @@ -335,6 +351,9 @@ ${PYSITELIB}/xarray/tests/test_options.p ${PYSITELIB}/xarray/tests/test_plot.py ${PYSITELIB}/xarray/tests/test_plot.pyc ${PYSITELIB}/xarray/tests/test_plot.pyo +${PYSITELIB}/xarray/tests/test_plugins.py +${PYSITELIB}/xarray/tests/test_plugins.pyc +${PYSITELIB}/xarray/tests/test_plugins.pyo ${PYSITELIB}/xarray/tests/test_print_versions.py ${PYSITELIB}/xarray/tests/test_print_versions.pyc ${PYSITELIB}/xarray/tests/test_print_versions.pyo @@ -371,6 +390,9 @@ ${PYSITELIB}/xarray/ufuncs.pyo ${PYSITELIB}/xarray/util/__init__.py ${PYSITELIB}/xarray/util/__init__.pyc ${PYSITELIB}/xarray/util/__init__.pyo +${PYSITELIB}/xarray/util/generate_ops.py +${PYSITELIB}/xarray/util/generate_ops.pyc +${PYSITELIB}/xarray/util/generate_ops.pyo ${PYSITELIB}/xarray/util/print_versions.py ${PYSITELIB}/xarray/util/print_versions.pyc ${PYSITELIB}/xarray/util/print_versions.pyo Index: pkgsrc/math/py-xarray/distinfo diff -u pkgsrc/math/py-xarray/distinfo:1.2 pkgsrc/math/py-xarray/distinfo:1.3 --- pkgsrc/math/py-xarray/distinfo:1.2 Sat Apr 11 13:47:08 2020 +++ pkgsrc/math/py-xarray/distinfo Fri May 7 19:14:36 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2020/04/11 13:47:08 adam Exp $ +$NetBSD: distinfo,v 1.3 2021/05/07 19:14:36 adam Exp $ -SHA1 (xarray-0.15.1.tar.gz) = 40efe1711499dab9d2c47c32721eca416a75b30f -RMD160 (xarray-0.15.1.tar.gz) = 215db3e091b5d6712390116a4006cda7fbab226b -SHA512 (xarray-0.15.1.tar.gz) = 8a2d7e9173c51c65ffe856fa83df730e0e7de9777726c6d6e8f7f4edcc512b3a980c7dc854c19d3bc4bec50e815ad776bd433a5750680f2851a2b0b1f505ea14 -Size (xarray-0.15.1.tar.gz) = 1934184 bytes +SHA1 (xarray-0.18.0.tar.gz) = e897551fcf73496b6dce70e5c614351572bc8b0b +RMD160 (xarray-0.18.0.tar.gz) = 0cded616dc32ca5668cae5c7a77b433094429370 +SHA512 (xarray-0.18.0.tar.gz) = a971db1644a2a5312b1d4749e4df3fbfbadec9c5b5b2d4ea59e7b42b1a3ae2d9290c3afb190a7175097bcdd398589759bee15054f163dbee1871408566c7fb1e +Size (xarray-0.18.0.tar.gz) = 2843270 bytes --_----------=_1620414876168400--