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 2021-04-24 23:09:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-seaborn (Old) and /work/SRC/openSUSE:Factory/.python-seaborn.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-seaborn" Sat Apr 24 23:09:28 2021 rev:16 rq:888229 version:0.11.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-seaborn/python-seaborn.changes 2021-01-25 18:23:34.836425355 +0100 +++ /work/SRC/openSUSE:Factory/.python-seaborn.new.12324/python-seaborn.changes 2021-04-24 23:10:41.219524947 +0200 @@ -1,0 +2,6 @@ +Sat Apr 24 15:09:58 UTC 2021 - Ben Greiner <c...@bnavigator.de> + +- Add seaborn-pr2562-clustermap-colors.patch for matplotlib 3.4 + compatibility gh#mwaskom/seaborn#2562 + +------------------------------------------------------------------- New: ---- seaborn-pr2562-clustermap-colors.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-seaborn.spec ++++++ --- /var/tmp/diff_new_pack.9K4LFU/_old 2021-04-24 23:10:41.635525534 +0200 +++ /var/tmp/diff_new_pack.9K4LFU/_new 2021-04-24 23:10:41.635525534 +0200 @@ -28,7 +28,8 @@ Group: Development/Languages/Python URL: https://github.com/mwaskom/seaborn Source: https://files.pythonhosted.org/packages/source/s/seaborn/seaborn-%{version}.tar.gz -BuildRequires: %{python_module Pillow} +# PATCH-FIX-UPSTREAM seaborn-pr2562-clustermap-colors.patch -- gh#mwaskom/seaborn#2562 +Patch0: https://github.com/mwaskom/seaborn/pull/2562.patch#/seaborn-pr2562-clustermap-colors.patch BuildRequires: %{python_module fastcluster} BuildRequires: %{python_module ipython} BuildRequires: %{python_module matplotlib >= 2.1.2} @@ -93,9 +94,9 @@ %pytest seaborn %files %{python_files} -%license LICENSE +%license LICENSE licences/* %doc README.md -%doc licences/ -%{python_sitelib}/seaborn* +%{python_sitelib}/seaborn +%{python_sitelib}/seaborn-%{version}*-info %changelog ++++++ seaborn-pr2562-clustermap-colors.patch ++++++ >From 99f1a79940833c7543263f131c624b57864ffe0d Mon Sep 17 00:00:00 2001 From: Ben Greiner <c...@bnavigator.de> Date: Sat, 24 Apr 2021 17:01:27 +0200 Subject: [PATCH] fix clustermap test: colors parameter --- seaborn/tests/test_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seaborn/tests/test_matrix.py b/seaborn/tests/test_matrix.py index 74a2e2c5a..39d3621aa 100644 --- a/seaborn/tests/test_matrix.py +++ b/seaborn/tests/test_matrix.py @@ -1314,7 +1314,7 @@ def test_clustermap_annotation(self): def test_tree_kws(self): rgb = (1, .5, .2) - g = mat.clustermap(self.df_norm, tree_kws=dict(color=rgb)) + g = mat.clustermap(self.df_norm, tree_kws=dict(colors=rgb)) for ax in [g.ax_col_dendrogram, g.ax_row_dendrogram]: tree, = ax.collections assert tuple(tree.get_color().squeeze())[:3] == rgb