Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-seaborn for openSUSE:Factory checked in at 2024-07-09 20:04:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-seaborn (Old) and /work/SRC/openSUSE:Factory/.python-seaborn.new.2080 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-seaborn" Tue Jul 9 20:04:40 2024 rev:23 rq:1186304 version:0.13.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-seaborn/python-seaborn.changes 2024-02-18 20:23:47.487357236 +0100 +++ /work/SRC/openSUSE:Factory/.python-seaborn.new.2080/python-seaborn.changes 2024-07-09 20:05:30.988035056 +0200 @@ -1,0 +2,6 @@ +Tue Jul 2 05:13:27 UTC 2024 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch support-numpy-2.patch: + * Remove reference to a now-removed warning. + +------------------------------------------------------------------- New: ---- support-numpy-2.patch BETA DEBUG BEGIN: New: - Add patch support-numpy-2.patch: * Remove reference to a now-removed warning. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-seaborn.spec ++++++ --- /var/tmp/diff_new_pack.bFmVZu/_old 2024-07-09 20:05:31.768063454 +0200 +++ /var/tmp/diff_new_pack.bFmVZu/_new 2024-07-09 20:05:31.768063454 +0200 @@ -21,9 +21,10 @@ Release: 0 Summary: Statistical data visualization for python License: BSD-2-Clause AND BSD-3-Clause AND MIT -Group: Development/Languages/Python URL: https://github.com/mwaskom/seaborn Source: https://files.pythonhosted.org/packages/source/s/seaborn/seaborn-%{version}.tar.gz +# PATCH-FIX-UPSTREAM gh#mwaskom/seaborn#3685 +Patch0: support-numpy-2.patch BuildRequires: %{python_module base >= 3.8} BuildRequires: %{python_module flit-core >= 3.2} BuildRequires: %{python_module matplotlib >= 3.6.2} ++++++ support-numpy-2.patch ++++++ >From 371f33c5ac72c5c670e0dde00e42973bcf13f892 Mon Sep 17 00:00:00 2001 From: Michael Waskom <mwas...@gmail.com> Date: Thu, 25 Apr 2024 06:54:20 -0400 Subject: [PATCH] Remove reference to deprecated numpy error class in tests --- tests/test_distributions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_distributions.py b/tests/test_distributions.py index 0df1a15beb..fd2f333fbc 100644 --- a/tests/test_distributions.py +++ b/tests/test_distributions.py @@ -1038,9 +1038,6 @@ def test_bandwidth(self, rng): def test_weights(self, rng): - import warnings - warnings.simplefilter("error", np.VisibleDeprecationWarning) - n = 100 x, y = rng.multivariate_normal([1, 3], [(.2, .5), (.5, 2)], n).T hue = np.repeat([0, 1], n // 2)