Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 18F9184F4D for ; Sun, 29 Oct 2023 17:50:32 +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 k790UnBnsfTX for ; Sun, 29 Oct 2023 17:50:31 +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 313BF84ECF for ; Sun, 29 Oct 2023 17:50:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 28D33FADC; Sun, 29 Oct 2023 17:50:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1698601831236150" MIME-Version: 1.0 Date: Sun, 29 Oct 2023 17:50:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics/py-seaborn To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231029175031.28D33FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1698601831236150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Oct 29 17:50:31 UTC 2023 Modified Files: pkgsrc/graphics/py-seaborn: Makefile PLIST distinfo Log Message: py-seaborn: updated to 0.13.0 v0.13.0 (September 2023) ------------------------ This is a major release with a number of important new features and changes. The highlight is a major overhaul to seaborn's categorical plotting functions, providing them with many new capabilities and better aligning their API with the rest of the library. There is also provisional support for alternate dataframe libraries like `polars `_, a new theme and display configuration system for :class:`objects.Plot`, and many smaller bugfixes and enhancements. Updating is recommended, but users are encouraged to carefully check the outputs of existing code that uses the categorical functions, and they should be aware of some deprecations and intentional changes to the default appearance of the resulting plots (see notes below with |API| and |Defaults| tags). To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/graphics/py-seaborn/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/py-seaborn/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/graphics/py-seaborn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1698601831236150 Content-Disposition: inline Content-Length: 4162 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/py-seaborn/Makefile diff -u pkgsrc/graphics/py-seaborn/Makefile:1.15 pkgsrc/graphics/py-seaborn/Makefile:1.16 --- pkgsrc/graphics/py-seaborn/Makefile:1.15 Sat Oct 28 19:57:09 2023 +++ pkgsrc/graphics/py-seaborn/Makefile Sun Oct 29 17:50:30 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2023/10/28 19:57:09 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2023/10/29 17:50:30 adam Exp $ -DISTNAME= seaborn-0.12.2 +DISTNAME= seaborn-0.13.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=s/seaborn/} @@ -13,11 +12,11 @@ LICENSE= modified-bsd TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core-[0-9]*:../../devel/py-flit_core DEPENDS+= ${PYPKGPREFIX}-matplotlib>=3.6.2:../../graphics/py-matplotlib -DEPENDS+= ${PYPKGPREFIX}-numpy>=1.17:../../math/py-numpy -DEPENDS+= ${PYPKGPREFIX}-pandas>=0.25:../../math/py-pandas +DEPENDS+= ${PYPKGPREFIX}-numpy>=1.25:../../math/py-numpy +DEPENDS+= ${PYPKGPREFIX}-pandas>=1.2:../../math/py-pandas # stats -DEPENDS+= ${PYPKGPREFIX}-scipy>=1.3:../../math/py-scipy -DEPENDS+= ${PYPKGPREFIX}-statsmodels>=0.10:../../math/py-statsmodels +DEPENDS+= ${PYPKGPREFIX}-scipy>=1.7:../../math/py-scipy +DEPENDS+= ${PYPKGPREFIX}-statsmodels>=0.12:../../math/py-statsmodels TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist Index: pkgsrc/graphics/py-seaborn/PLIST diff -u pkgsrc/graphics/py-seaborn/PLIST:1.5 pkgsrc/graphics/py-seaborn/PLIST:1.6 --- pkgsrc/graphics/py-seaborn/PLIST:1.5 Sat Oct 28 19:57:09 2023 +++ pkgsrc/graphics/py-seaborn/PLIST Sun Oct 29 17:50:30 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2023/10/28 19:57:09 wiz Exp $ +@comment $NetBSD: PLIST,v 1.6 2023/10/29 17:50:30 adam Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.md ${PYSITELIB}/${WHEEL_INFODIR}/METADATA ${PYSITELIB}/${WHEEL_INFODIR}/RECORD @@ -6,6 +6,9 @@ ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL ${PYSITELIB}/seaborn/__init__.py ${PYSITELIB}/seaborn/__init__.pyc ${PYSITELIB}/seaborn/__init__.pyo +${PYSITELIB}/seaborn/_base.py +${PYSITELIB}/seaborn/_base.pyc +${PYSITELIB}/seaborn/_base.pyo ${PYSITELIB}/seaborn/_compat.py ${PYSITELIB}/seaborn/_compat.pyc ${PYSITELIB}/seaborn/_compat.pyo @@ -42,9 +45,6 @@ ${PYSITELIB}/seaborn/_core/subplots.pyo ${PYSITELIB}/seaborn/_core/typing.py ${PYSITELIB}/seaborn/_core/typing.pyc ${PYSITELIB}/seaborn/_core/typing.pyo -${PYSITELIB}/seaborn/_decorators.py -${PYSITELIB}/seaborn/_decorators.pyc -${PYSITELIB}/seaborn/_decorators.pyo ${PYSITELIB}/seaborn/_docstrings.py ${PYSITELIB}/seaborn/_docstrings.pyc ${PYSITELIB}/seaborn/_docstrings.pyo @@ -69,9 +69,6 @@ ${PYSITELIB}/seaborn/_marks/line.pyo ${PYSITELIB}/seaborn/_marks/text.py ${PYSITELIB}/seaborn/_marks/text.pyc ${PYSITELIB}/seaborn/_marks/text.pyo -${PYSITELIB}/seaborn/_oldcore.py -${PYSITELIB}/seaborn/_oldcore.pyc -${PYSITELIB}/seaborn/_oldcore.pyo ${PYSITELIB}/seaborn/_statistics.py ${PYSITELIB}/seaborn/_statistics.pyc ${PYSITELIB}/seaborn/_statistics.pyo Index: pkgsrc/graphics/py-seaborn/distinfo diff -u pkgsrc/graphics/py-seaborn/distinfo:1.7 pkgsrc/graphics/py-seaborn/distinfo:1.8 --- pkgsrc/graphics/py-seaborn/distinfo:1.7 Sun Apr 23 10:00:49 2023 +++ pkgsrc/graphics/py-seaborn/distinfo Sun Oct 29 17:50:30 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2023/04/23 10:00:49 adam Exp $ +$NetBSD: distinfo,v 1.8 2023/10/29 17:50:30 adam Exp $ -BLAKE2s (seaborn-0.12.2.tar.gz) = 9b75a2e24814a0fe8196c4343390179a2473e89643a2fcfd3b8db8ca332e5037 -SHA512 (seaborn-0.12.2.tar.gz) = 988a9922ee301b655911efa38905674b7dd15e7f7b157ad67f5befaeb02db492553f8bd6133b54d2dd7970b8dbbfd92d81d1faea3fa618247ebcaeb98620a060 -Size (seaborn-0.12.2.tar.gz) = 1439798 bytes +BLAKE2s (seaborn-0.13.0.tar.gz) = 672c1f6b11faf95d62c2b28e8de47fc8aaf8eb036ccc9410a9443960c4eeef42 +SHA512 (seaborn-0.13.0.tar.gz) = d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8 +Size (seaborn-0.13.0.tar.gz) = 1455480 bytes --_----------=_1698601831236150--