Received: by mail.netbsd.org (Postfix, from userid 605) id 707C984EB1; Wed, 25 Jan 2023 14:05:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A0B7584EAE for ; Wed, 25 Jan 2023 14:05:17 +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 KDMBH_yaJnyT for ; Wed, 25 Jan 2023 14:05:16 +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 AF1D084D14 for ; Wed, 25 Jan 2023 14:05:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A69F6FA90; Wed, 25 Jan 2023 14:05:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674655516146800" MIME-Version: 1.0 Date: Wed, 25 Jan 2023 14:05:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-pandas To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230125140516.A69F6FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674655516146800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jan 25 14:05:16 UTC 2023 Modified Files: pkgsrc/math/py-pandas: Makefile distinfo Log Message: py-pandas: updated to 1.5.3 What's new in 1.5.3 (January 18, 2023) -------------------------------------- These are the changes in pandas 1.5.3. See :ref:`release` for a full changelog including other versions of pandas. Fixed regressions ~~~~~~~~~~~~~~~~~ - Fixed performance regression in :meth:`Series.isin` when ``values`` is empty (:issue:`49839`) - Fixed regression in :meth:`DataFrame.memory_usage` showing unnecessary ``FutureWarning`` when :class:`DataFrame` is empty (:issue:`50066`) - Fixed regression in :meth:`.DataFrameGroupBy.transform` when used with ``as_index=False`` (:issue:`49834`) - Enforced reversion of ``color`` as an alias for ``c`` and ``size`` as an alias for ``s`` in function :meth:`DataFrame.plot.scatter` (:issue:`49732`) - Fixed regression in :meth:`.SeriesGroupBy.apply` setting a ``name`` attribute on the result if the result was a :class:`DataFrame` (:issue:`49907`) - Fixed performance regression in setting with the :meth:`~DataFrame.at` indexer (:issue:`49771`) - Fixed regression in the methods ``apply``, ``agg``, and ``transform`` when used with NumPy functions that informed users to supply ``numeric_only=True`` if the operation failed on non-numeric dtypes; such columns must be dropped prior to using these methods (:issue:`50538`) - Fixed regression in :func:`to_datetime` raising ``ValueError`` when parsing array of ``float`` containing ``np.nan`` (:issue:`50237`) Bug fixes ~~~~~~~~~ - Bug in the Copy-on-Write implementation losing track of views when indexing a :class:`DataFrame` with another :class:`DataFrame` (:issue:`50630`) - Bug in :meth:`.Styler.to_excel` leading to error when unrecognized ``border-style`` (e.g. ``"hair"``) provided to Excel writers (:issue:`48649`) - Bug in :meth:`Series.quantile` emitting warning from NumPy when :class:`Series` has only ``NA`` values (:issue:`50681`) - Bug when chaining several :meth:`.Styler.concat` calls, only the last styler was concatenated (:issue:`49207`) - Fixed bug when instantiating a :class:`DataFrame` subclass inheriting from ``typing.Generic`` that triggered a ``UserWarning`` on python 3.11 (:issue:`49649`) - Bug in :func:`pivot_table` with NumPy 1.24 or greater when the :class:`DataFrame` columns has nested elements (:issue:`50342`) - Bug in :func:`pandas.testing.assert_series_equal` (and equivalent ``assert_`` functions) when having nested data and using numpy >= 1.25 (:issue:`50360`) Other ~~~~~ If you are using :meth:`DataFrame.to_sql`, :func:`read_sql`, :func:`read_sql_table`, or :func:`read_sql_query` with SQLAlchemy 1.4.46 or greater, you may see a ``sqlalchemy.exc.RemovedIn20Warning``. These warnings can be safely ignored for the SQLAlchemy 1.4.x releases as pandas works toward compatibility with SQLAlchemy 2.0. - Reverted deprecation (:issue:`45324`) of behavior of :meth:`Series.__getitem__` and :meth:`Series.__setitem__` slicing with an integer :class:`Index`; this will remain positional (:issue:`49612`) - A ``FutureWarning`` raised when attempting to set values inplace with :meth:`DataFrame.loc` or :meth:`DataFrame.iloc` has been changed to a ``DeprecationWarning`` (:issue:`48673`) To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/math/py-pandas/Makefile cvs rdiff -u -r1.29 -r1.30 pkgsrc/math/py-pandas/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674655516146800 Content-Disposition: inline Content-Length: 1544 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-pandas/Makefile diff -u pkgsrc/math/py-pandas/Makefile:1.41 pkgsrc/math/py-pandas/Makefile:1.42 --- pkgsrc/math/py-pandas/Makefile:1.41 Mon Dec 5 22:42:54 2022 +++ pkgsrc/math/py-pandas/Makefile Wed Jan 25 14:05:16 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2022/12/05 22:42:54 adam Exp $ +# $NetBSD: Makefile,v 1.42 2023/01/25 14:05:16 adam Exp $ -DISTNAME= pandas-1.5.2 +DISTNAME= pandas-1.5.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/} Index: pkgsrc/math/py-pandas/distinfo diff -u pkgsrc/math/py-pandas/distinfo:1.29 pkgsrc/math/py-pandas/distinfo:1.30 --- pkgsrc/math/py-pandas/distinfo:1.29 Mon Nov 28 21:46:51 2022 +++ pkgsrc/math/py-pandas/distinfo Wed Jan 25 14:05:16 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.29 2022/11/28 21:46:51 adam Exp $ +$NetBSD: distinfo,v 1.30 2023/01/25 14:05:16 adam Exp $ -BLAKE2s (pandas-1.5.2.tar.gz) = 5ee5120f9fc4dd00099ee31f6c3db250366704dba6f9982f4607a51731a485ea -SHA512 (pandas-1.5.2.tar.gz) = 1e6b653ff418c839895946123f90fffcfafd57f24dfbd6bae4e9988893b7d57d6276ed101112c8f9730af53f600d006fe3a53bbed597c0376856f2cfc90c1f05 -Size (pandas-1.5.2.tar.gz) = 5201551 bytes +BLAKE2s (pandas-1.5.3.tar.gz) = 70796e4f607463d03134f834f57b29b6b482faf98e64c1da58c8f847618b0081 +SHA512 (pandas-1.5.3.tar.gz) = 3c725c33dcaf78b952d2eb966ced73ff0073162a01d3cbcb722d58d8f12a82163e6e684c27284c735bdfb32dea263b960f70f6a80ff93e6b316316d40835ae35 +Size (pandas-1.5.3.tar.gz) = 5203060 bytes --_----------=_1674655516146800--