Hello community, here is the log from the commit of package python-ipykernel for openSUSE:Factory checked in at 2020-08-01 12:30:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old) and /work/SRC/openSUSE:Factory/.python-ipykernel.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-ipykernel" Sat Aug 1 12:30:42 2020 rev:10 rq:822785 version:5.3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes 2020-07-15 12:11:32.732564959 +0200 +++ /work/SRC/openSUSE:Factory/.python-ipykernel.new.3592/python-ipykernel.changes 2020-08-01 12:30:48.054435627 +0200 @@ -1,0 +2,13 @@ +Sat Jul 25 15:31:23 UTC 2020 - Arun Persaud <arun@gmx.de> + +- update to version 5.3.4: + * Only run Qt eventloop in the shell stream. (:ghpull:`531`) + +------------------------------------------------------------------- +Sat Jul 18 18:10:45 UTC 2020 - Arun Persaud <arun@gmx.de> + +- update to version 5.3.3: + * Fix QSocketNotifier in the Qt event loop not being disabled for + the control channel. (:ghpull:`525`) + +------------------------------------------------------------------- Old: ---- ipykernel-5.3.2.tar.gz New: ---- ipykernel-5.3.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ipykernel.spec ++++++ --- /var/tmp/diff_new_pack.TyRDeC/_old 2020-08-01 12:30:48.682436215 +0200 +++ /var/tmp/diff_new_pack.TyRDeC/_new 2020-08-01 12:30:48.690436222 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-ipykernel -Version: 5.3.2 +Version: 5.3.4 Release: 0 Summary: IPython Kernel for Jupyter License: BSD-3-Clause ++++++ ipykernel-5.3.2.tar.gz -> ipykernel-5.3.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-5.3.2/PKG-INFO new/ipykernel-5.3.4/PKG-INFO --- old/ipykernel-5.3.2/PKG-INFO 2020-07-08 13:16:29.000000000 +0200 +++ new/ipykernel-5.3.4/PKG-INFO 2020-07-22 21:14:02.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ipykernel -Version: 5.3.2 +Version: 5.3.4 Summary: IPython Kernel for Jupyter Home-page: https://ipython.org Author: IPython Development Team diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-5.3.2/docs/changelog.rst new/ipykernel-5.3.4/docs/changelog.rst --- old/ipykernel-5.3.2/docs/changelog.rst 2020-07-08 13:13:51.000000000 +0200 +++ new/ipykernel-5.3.4/docs/changelog.rst 2020-07-22 21:12:58.000000000 +0200 @@ -4,6 +4,14 @@ 5.3 --- +5.3.4 +***** +- Only run Qt eventloop in the shell stream. (:ghpull:`531`) + +5.3.3 +***** +- Fix QSocketNotifier in the Qt event loop not being disabled for the control channel. (:ghpull:`525`) + 5.3.2 ***** - Restore timer based event loop as a Windows-compatible fallback. (:ghpull:`523`) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-5.3.2/ipykernel/_version.py new/ipykernel-5.3.4/ipykernel/_version.py --- old/ipykernel-5.3.2/ipykernel/_version.py 2020-07-08 13:14:20.000000000 +0200 +++ new/ipykernel-5.3.4/ipykernel/_version.py 2020-07-22 21:13:11.000000000 +0200 @@ -1,4 +1,4 @@ -version_info = (5, 3, 2) +version_info = (5, 3, 4) __version__ = '.'.join(map(str, version_info[:3])) # pep440 is annoying, beta/alpha/rc should _not_ have dots or pip/setuptools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-5.3.2/ipykernel/eventloops.py new/ipykernel-5.3.4/ipykernel/eventloops.py --- old/ipykernel-5.3.2/ipykernel/eventloops.py 2020-07-08 13:12:59.000000000 +0200 +++ new/ipykernel-5.3.4/ipykernel/eventloops.py 2020-07-22 21:11:55.000000000 +0200 @@ -116,8 +116,10 @@ kernel.app = get_app_qt4([" "]) kernel.app.setQuitOnLastWindowClosed(False) - for s in kernel.shell_streams: - _notify_stream_qt(kernel, s) + # Only register the eventloop for the shell stream because doing + # it for the control stream is generating a bunch of unnecessary + # warnings on Windows. + _notify_stream_qt(kernel, kernel.shell_streams[0]) _loop_qt(kernel.app) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ipykernel-5.3.2/ipykernel.egg-info/PKG-INFO new/ipykernel-5.3.4/ipykernel.egg-info/PKG-INFO --- old/ipykernel-5.3.2/ipykernel.egg-info/PKG-INFO 2020-07-08 13:16:29.000000000 +0200 +++ new/ipykernel-5.3.4/ipykernel.egg-info/PKG-INFO 2020-07-22 21:14:02.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: ipykernel -Version: 5.3.2 +Version: 5.3.4 Summary: IPython Kernel for Jupyter Home-page: https://ipython.org Author: IPython Development Team
participants (1)
-
root