Hello community,

here is the log from the commit of package python3-jupyter_ipykernel for 
openSUSE:Factory checked in at 2015-11-18 22:34:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-jupyter_ipykernel (Old)
 and      /work/SRC/openSUSE:Factory/.python3-jupyter_ipykernel.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-jupyter_ipykernel"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python3-jupyter_ipykernel/python3-jupyter_ipykernel.changes
      2015-10-12 10:02:09.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-jupyter_ipykernel.new/python3-jupyter_ipykernel.changes
 2015-11-18 22:34:27.000000000 +0100
@@ -1,0 +2,13 @@
+Sun Oct 25 22:44:45 UTC 2015 - [email protected]
+
+- update to version 4.1.1:
+  * Fix missing "ipykernel.__version__" on Python 2.
+  * Fix missing "target_name" when opening comms from the frontend.
+
+-------------------------------------------------------------------
+Wed Oct 21 13:28:07 UTC 2015 - [email protected]
+
+- Don't build with python3-buildservice-tweak.
+  It causes package tests to fail .
+
+-------------------------------------------------------------------

Old:
----
  ipykernel-4.1.0.tar.gz

New:
----
  ipykernel-4.1.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python3-jupyter_ipykernel.spec ++++++
--- /var/tmp/diff_new_pack.Itbmsk/_old  2015-11-18 22:34:28.000000000 +0100
+++ /var/tmp/diff_new_pack.Itbmsk/_new  2015-11-18 22:34:28.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python3-jupyter_ipykernel
-Version:        4.1.0
+Version:        4.1.1
 Release:        0
 Summary:        IPython Kernel for Jupyter
 License:        BSD-3-Clause
@@ -32,6 +32,7 @@
 # testing requirements
 BuildRequires:  python3-nose
 BuildRequires:  python3-numpy
+BuildConflicts: python3-buildservice-tweak
 Requires:       python3-jupyter_client
 Requires:       python3-jupyter_ipython >= 4.0.0
 Requires:       python3-traitlets

++++++ ipykernel-4.1.0.tar.gz -> ipykernel-4.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-4.1.0/PKG-INFO new/ipykernel-4.1.1/PKG-INFO
--- old/ipykernel-4.1.0/PKG-INFO        2015-10-07 13:33:48.000000000 +0200
+++ new/ipykernel-4.1.1/PKG-INFO        2015-10-20 10:25:52.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: ipykernel
-Version: 4.1.0
+Version: 4.1.1
 Summary: IPython Kernel for Jupyter
 Home-page: http://ipython.org
 Author: IPython Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-4.1.0/docs/changelog.rst 
new/ipykernel-4.1.1/docs/changelog.rst
--- old/ipykernel-4.1.0/docs/changelog.rst      2015-10-07 13:27:53.000000000 
+0200
+++ new/ipykernel-4.1.1/docs/changelog.rst      2015-10-20 10:24:14.000000000 
+0200
@@ -4,8 +4,20 @@
 4.1
 ---
 
+4.1.1
+*****
+
+`4.1.1 on GitHub <https://github.com/ipython/ipykernel/milestones/4.1.1>`_
+
+- Fix missing ``ipykernel.__version__`` on Python 2.
+- Fix missing ``target_name`` when opening comms from the frontend.
+
+4.1.0
+*****
+
 `4.1 on GitHub <https://github.com/ipython/ipykernel/milestones/4.1>`_
 
+
 -  add ``ipython kernel install`` entrypoint for installing the IPython
    kernelspec
 -  provisional implementation of ``comm_info`` request/reply for msgspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-4.1.0/ipykernel/__init__.py 
new/ipykernel-4.1.1/ipykernel/__init__.py
--- old/ipykernel-4.1.0/ipykernel/__init__.py   2015-09-24 11:30:15.000000000 
+0200
+++ new/ipykernel-4.1.1/ipykernel/__init__.py   2015-10-20 10:21:16.000000000 
+0200
@@ -1,2 +1,2 @@
-from ._version import *
+from ._version import version_info, __version__, kernel_protocol_version_info, 
kernel_protocol_version
 from .connect import *
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-4.1.0/ipykernel/_version.py 
new/ipykernel-4.1.1/ipykernel/_version.py
--- old/ipykernel-4.1.0/ipykernel/_version.py   2015-10-07 13:28:31.000000000 
+0200
+++ new/ipykernel-4.1.1/ipykernel/_version.py   2015-10-20 10:25:35.000000000 
+0200
@@ -1,4 +1,4 @@
-version_info = (4, 1, 0)
+version_info = (4, 1, 1)
 __version__ = '.'.join(map(str, version_info))
 
 kernel_protocol_version_info = (5, 0)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-4.1.0/ipykernel/comm/manager.py 
new/ipykernel-4.1.1/ipykernel/comm/manager.py
--- old/ipykernel-4.1.0/ipykernel/comm/manager.py       2015-09-04 
17:46:03.000000000 +0200
+++ new/ipykernel-4.1.1/ipykernel/comm/manager.py       2015-10-20 
10:21:16.000000000 +0200
@@ -106,6 +106,7 @@
                     kernel=self.kernel,
                     iopub_socket=self.iopub_socket,
                     primary=False,
+                    target_name=target_name,
         )
         self.register_comm(comm)
         if f is None:


Reply via email to