Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ipython for openSUSE:Factory checked in at 2022-02-06 23:53:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ipython (Old) and /work/SRC/openSUSE:Factory/.python-ipython.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ipython" Sun Feb 6 23:53:36 2022 rev:27 rq:951380 version:8.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ipython/python-ipython.changes 2022-01-22 08:18:14.166882751 +0100 +++ /work/SRC/openSUSE:Factory/.python-ipython.new.1898/python-ipython.changes 2022-02-06 23:53:59.910933778 +0100 @@ -1,0 +2,6 @@ +Thu Feb 3 20:32:01 UTC 2022 - Ben Greiner <c...@bnavigator.de> + +- Add ipython-pr13466-display.patch -- gh#ipython/ipython#13466 + * fixes plotly test failures + +------------------------------------------------------------------- New: ---- ipython-pr13466-display.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ipython.spec ++++++ --- /var/tmp/diff_new_pack.ew2XxS/_old 2022-02-06 23:54:00.442930230 +0100 +++ /var/tmp/diff_new_pack.ew2XxS/_new 2022-02-06 23:54:00.446930204 +0100 @@ -46,9 +46,11 @@ Patch0: ipython-pr13282-py310-inspect.patch # PATCH-FIX-UPSTREAM ipython-pr13371-py310-oserror.patch -- gh#ipython/ipython#13371 Patch1: ipython-pr13371-py310-oserror.patch +# PATCH-FIX-UPSTREAM ipython-pr13466-display.patch -- gh#ipython/ipython#13466 +Patch2: https://github.com/ipython/ipython/pull/13466.patch#/ipython-pr13466-display.patch # PATCH-FIX-OPENSUSE skip-network-test.patch gh#ipython/ipython#13468 mc...@suse.com # skip doctests requiring network connection -Patch2: skip-network-test.patch +Patch3: skip-network-test.patch BuildRequires: %pythons BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module setuptools >= 18.5} ++++++ ipython-pr13466-display.patch ++++++ >From ad08da6f192d30fd1494b4d5fafbd480872e97e0 Mon Sep 17 00:00:00 2001 From: Eric Prestat <eric.pres...@gmail.com> Date: Sat, 15 Jan 2022 11:02:13 +0000 Subject: [PATCH] Fix display import in .core.display --- IPython/core/display.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/IPython/core/display.py b/IPython/core/display.py index f3934c2d9d7..9db75035762 100644 --- a/IPython/core/display.py +++ b/IPython/core/display.py @@ -83,7 +83,7 @@ def _display_mimetype(mimetype, objs, raw=False, metadata=None): if raw: # turn list of pngdata into list of { 'image/png': pngdata } objs = [ {mimetype: obj} for obj in objs ] - display(*objs, raw=raw, metadata=metadata, include=[mimetype]) + display_functions.display(*objs, raw=raw, metadata=metadata, include=[mimetype]) #----------------------------------------------------------------------------- # Main functions @@ -517,10 +517,10 @@ def _repr_html_(self): self.html_width, self.total, self.progress) def display(self): - display(self, display_id=self._display_id) + display_functions.display(self, display_id=self._display_id) def update(self): - display(self, display_id=self._display_id, update=True) + display_functions.display(self, display_id=self._display_id, update=True) @property def progress(self): @@ -694,7 +694,7 @@ def _ipython_display_(self): metadata = { 'application/geo+json': self.metadata } - display(bundle, metadata=metadata, raw=True) + display_functions.display(bundle, metadata=metadata, raw=True) class Javascript(TextDisplayObject):