commit python-ipykernel for openSUSE:Factory

2024-06-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2024-06-04 12:50:28

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.24587 (New)


Package is "python-ipykernel"

Tue Jun  4 12:50:28 2024 rev:49 rq:1177273 version:6.29.4

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2024-05-07 18:02:05.735652950 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.24587/python-ipykernel.changes 
2024-06-04 12:50:38.842773339 +0200
@@ -1,0 +2,6 @@
+Tue May 28 06:16:03 UTC 2024 - Steve Kowalik 
+
+- Add patch ignore-ipython-deprecationwarning.patch:
+  * Ignore DeprecationWarning raised by IPython 8.24+.
+
+---

New:

  ignore-ipython-deprecationwarning.patch

BETA DEBUG BEGIN:
  New:
- Add patch ignore-ipython-deprecationwarning.patch:
  * Ignore DeprecationWarning raised by IPython 8.24+.
BETA DEBUG END:



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.8nstCe/_old  2024-06-04 12:50:39.486796710 +0200
+++ /var/tmp/diff_new_pack.8nstCe/_new  2024-06-04 12:50:39.486796710 +0200
@@ -22,9 +22,10 @@
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
-Group:  Development/Languages/Python
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#ipython/ipykernel#1242
+Patch0: ignore-ipython-deprecationwarning.patch
 Provides:   python-jupyter_ipykernel = %{version}
 Obsoletes:  python-jupyter_ipykernel < %{version}
 Provides:   %{python_module ipykernel-doc = %{version}}

++ ignore-ipython-deprecationwarning.patch ++
>From e2827a6ee80767a815b1f9a6b913faf4f2b731c4 Mon Sep 17 00:00:00 2001
From: Steve Kowalik 
Date: Tue, 28 May 2024 15:49:36 +1000
Subject: [PATCH] Catch IPython 8.24 DeprecationWarnings

test_pylab with IPython 8.24 and above raises DeprecationWarnings about
backend{s,2gui} being deprecated, causing test failures. Add them into
the IPython list so they are ignored.
---
 pyproject.toml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pyproject.toml b/pyproject.toml
index cdf265f6..d9481564 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -172,6 +172,8 @@ filterwarnings= [
 
   # IPython warnings
   "ignore: `Completer.complete` is pending deprecation since IPython 6.0 and 
will be replaced by `Completer.completions`:PendingDeprecationWarning",
+  "ignore: backends is deprecated since IPython 8.24, backends are managed in 
matplotlib and can be externally registered.:DeprecationWarning",
+  "ignore: backend2gui is deprecated since IPython 8.24, backends are managed 
in matplotlib and can be externally registered.:DeprecationWarning",
 
   # Ignore jupyter_client warnings
   "ignore:unclosed 

commit python-ipykernel for openSUSE:Factory

2024-05-07 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2024-05-07 18:02:04

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1880 (New)


Package is "python-ipykernel"

Tue May  7 18:02:04 2024 rev:48 rq:1172014 version:6.29.4

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2024-03-06 23:03:04.822156256 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1880/python-ipykernel.changes  
2024-05-07 18:02:05.735652950 +0200
@@ -1,0 +2,6 @@
+Sun May  5 18:01:26 UTC 2024 - Ben Greiner 
+
+- Update to 6.29.4
+  * Fix side effect import for pickleutil #1216 (@blink1073)
+
+---

Old:

  ipykernel-6.29.3.tar.gz

New:

  ipykernel-6.29.4.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.ma2fI1/_old  2024-05-07 18:02:06.499680731 +0200
+++ /var/tmp/diff_new_pack.ma2fI1/_new  2024-05-07 18:02:06.499680731 +0200
@@ -17,9 +17,8 @@
 
 
 %{?sle15_python_module_pythons}
-%define skip_python39 1
 Name:   python-ipykernel
-Version:6.29.3
+Version:6.29.4
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.29.3.tar.gz -> ipykernel-6.29.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.29.3/CHANGELOG.md 
new/ipykernel-6.29.4/CHANGELOG.md
--- old/ipykernel-6.29.3/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.29.4/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,26 @@
 
 
 
+## 6.29.4
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.29.3...1cea5332ffc37f32e8232fd2b8b8ddd91b2bbdcf))
+
+### Bugs fixed
+
+- Fix side effect import for pickleutil 
[#1216](https://github.com/ipython/ipykernel/pull/1216) 
([@blink1073](https://github.com/blink1073))
+
+### Maintenance and upkeep improvements
+
+- Do not import debugger/debugpy unless needed 
[#1223](https://github.com/ipython/ipykernel/pull/1223) 
([@krassowski](https://github.com/krassowski))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2024-02-26=2024-03-27=c))
+
+[@agronholm](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aagronholm+updated%3A2024-02-26..2024-03-27=Issues)
 | 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2024-02-26..2024-03-27=Issues)
 | 
[@davidbrochart](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Adavidbrochart+updated%3A2024-02-26..2024-03-27=Issues)
 | 
[@krassowski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Akrassowski+updated%3A2024-02-26..2024-03-27=Issues)
 | 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2024-02-26..2024-03-27=Issues)
+
+
+
 ## 6.29.3
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.29.2...de2221ce155668c343084fde37b77fb6b1671dc9))
@@ -29,8 +49,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@jdranczewski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajdranczewski+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@joouha](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajoouha+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@krassowski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Akrassowski+updated%3A2024-02-07..2024-02-26=Issues)
 
-
-
 ## 6.29.2
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.29.1...d45fe71990d26c0bd5b7b3b2a4ccd3d1f6609899))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.29.3/PKG-INFO 
new/ipykernel-6.29.4/PKG-INFO
--- old/ipykernel-6.29.3/PKG-INFO   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.29.4/PKG-INFO   2020-02-02 01:00:00.0 +0100
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.3
 Name: ipykernel
-Version: 6.29.3
+Version: 6.29.4
 Summary: IPython Kernel for Jupyter
 Project-URL: Homepage, https://ipython.org
 Project-URL: Documentation, https://ipykernel.readthedocs.io
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit python-ipykernel for openSUSE:Factory

2024-03-06 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2024-03-06 23:03:02

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1770 (New)


Package is "python-ipykernel"

Wed Mar  6 23:03:02 2024 rev:47 rq:1155310 version:6.29.3

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2024-02-08 19:01:54.578527791 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1770/python-ipykernel.changes  
2024-03-06 23:03:04.822156256 +0100
@@ -1,0 +2,16 @@
+Tue Mar  5 15:11:37 UTC 2024 - Dominique Leuenberger 
+
+- Skip build for python 3.9: python-ipython is no longer available.
+
+---
+Sat Mar  2 11:25:38 UTC 2024 - Ben Greiner 
+
+- Update to 6.29.3
+  ## Enhancements made
+  * Eventloop scheduling improvements for stop_on_error_timeout and
+schedule_next #1212 (@jdranczewski)
+  ## Bugs fixed
+  * Disable frozen modules by default, add a toggle #1213
+(@krassowski)
+
+---

Old:

  ipykernel-6.29.2.tar.gz

New:

  ipykernel-6.29.3.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.5d9CLU/_old  2024-03-06 23:03:06.110202954 +0100
+++ /var/tmp/diff_new_pack.5d9CLU/_new  2024-03-06 23:03:06.110202954 +0100
@@ -17,8 +17,9 @@
 
 
 %{?sle15_python_module_pythons}
+%define skip_python39 1
 Name:   python-ipykernel
-Version:6.29.2
+Version:6.29.3
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -73,7 +74,7 @@
 BuildRequires:  %{python_module flaky}
 BuildRequires:  %{python_module matplotlib}
 BuildRequires:  %{python_module pytest >= 7.0}
-BuildRequires:  %{python_module pytest-asyncio}
+BuildRequires:  %{python_module pytest-asyncio >= 0.23.5}
 BuildRequires:  %{python_module pytest-timeout}
 # we don't want ipyparallel and its dependencies in Ring1, see below
 #BuildRequires:  #{python_module ipyparallel}

++ ipykernel-6.29.2.tar.gz -> ipykernel-6.29.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.29.2/CHANGELOG.md 
new/ipykernel-6.29.3/CHANGELOG.md
--- old/ipykernel-6.29.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.29.3/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,35 @@
 
 
 
+## 6.29.3
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.29.2...de2221ce155668c343084fde37b77fb6b1671dc9))
+
+### Enhancements made
+
+- Eventloop scheduling improvements for stop_on_error_timeout and 
schedule_next [#1212](https://github.com/ipython/ipykernel/pull/1212) 
([@jdranczewski](https://github.com/jdranczewski))
+
+### Bugs fixed
+
+- Disable frozen modules by default, add a toggle 
[#1213](https://github.com/ipython/ipykernel/pull/1213) 
([@krassowski](https://github.com/krassowski))
+
+### Maintenance and upkeep improvements
+
+- Fix typings and update project urls 
[#1214](https://github.com/ipython/ipykernel/pull/1214) 
([@blink1073](https://github.com/blink1073))
+- Unpin pytest-asyncio and update ruff config 
[#1209](https://github.com/ipython/ipykernel/pull/1209) 
([@blink1073](https://github.com/blink1073))
+
+### Documentation improvements
+
+- Correct spelling mistake 
[#1208](https://github.com/ipython/ipykernel/pull/1208) 
([@joouha](https://github.com/joouha))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2024-02-07=2024-02-26=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@jdranczewski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajdranczewski+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@joouha](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajoouha+updated%3A2024-02-07..2024-02-26=Issues)
 | 
[@krassowski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Akrassowski+updated%3A2024-02-07..2024-02-26=Issues)
+
+
+
 ## 6.29.2
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.29.1...d45fe71990d26c0bd5b7b3b2a4ccd3d1f6609899))
@@ -20,8 +49,6 @@
 
 
[@ianthomas23](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aianthomas23+updated%3A2024-02-06..2024-02-07=Issues)
 

commit python-ipykernel for openSUSE:Factory

2024-01-21 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2024-01-21 23:07:29

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.16006 (New)


Package is "python-ipykernel"

Sun Jan 21 23:07:29 2024 rev:45 rq:1140287 version:6.29.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-12-21 23:38:47.074912191 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.16006/python-ipykernel.changes 
2024-01-21 23:07:40.108001142 +0100
@@ -1,0 +2,17 @@
+Sun Jan 21 10:45:42 UTC 2024 - Ben Greiner 
+
+- Update to 6.29.0
+  * Always set debugger to true in kernelspec #1191 (@ianthomas23)
+  * Revert "Enable ProactorEventLoop on windows for ipykernel"
+#1194 (@blink1073)
+  * Make outputs go to correct cell when generated in
+threads/asyncio #1186 (@krassowski)
+  * Pin pytest-asyncio to 0.23.2 #1189 (@ianthomas23)
+- Update to 6.28.0
+  * Enable ProactorEventLoop on windows for ipykernel #1184
+(@NewUserHa)
+  * Adds a flag in debug_info for the copyToGlobals support #1099
+(@brichet)
+  * Support python 3.12 #1185 (@blink1073)
+
+---

Old:

  ipykernel-6.27.1.tar.gz

New:

  ipykernel-6.29.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.TDT0gs/_old  2024-01-21 23:07:40.676021846 +0100
+++ /var/tmp/diff_new_pack.TDT0gs/_new  2024-01-21 23:07:40.676021846 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ipykernel
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.27.1
+Version:6.29.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -51,7 +51,7 @@
 BuildRequires:  %{python_module nest-asyncio}
 BuildRequires:  %{python_module packaging}
 BuildRequires:  %{python_module psutil}
-BuildRequires:  %{python_module pyzmq >= 20}
+BuildRequires:  %{python_module pyzmq >= 24}
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
 BuildRequires:  %{python_module jupyter-core >= 5.1 or (%python-jupyter-core 
>= 4.12 with %python-jupyter-core < 5.0)}
@@ -64,7 +64,7 @@
 Requires:   python-nest-asyncio
 Requires:   python-packaging
 Requires:   python-psutil
-Requires:   python-pyzmq >= 20
+Requires:   python-pyzmq >= 24
 Requires:   python-tornado >= 6.1
 Requires:   python-traitlets >= 5.4.0
 Requires:   (python-jupyter-core >= 5.1 or (python-jupyter-core >= 4.12 
with python-jupyter-core < 5.0))
@@ -90,6 +90,7 @@
 %prep
 %autosetup -p1 -n ipykernel-%{version}
 sed -i -e 's/, "--color=yes"//' pyproject.toml
+sed -i -e '/ignore:.* current event loop:DeprecationWarning/ a \  
"ignore:pytest-asyncio detected an unclosed event loop:DeprecationWarning",' 
pyproject.toml
 
 %build
 %pyproject_wheel

++ ipykernel-6.27.1.tar.gz -> ipykernel-6.29.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.1/.github/dependabot.yml 
new/ipykernel-6.29.0/.github/dependabot.yml
--- old/ipykernel-6.27.1/.github/dependabot.yml 2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.29.0/.github/dependabot.yml 2020-02-02 01:00:00.0 
+0100
@@ -4,7 +4,15 @@
 directory: "/"
 schedule:
   interval: "weekly"
+groups:
+  actions:
+patterns:
+  - "*"
   - package-ecosystem: "pip"
 directory: "/"
 schedule:
   interval: "weekly"
+groups:
+  actions:
+patterns:
+  - "*"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.1/.github/workflows/ci.yml 
new/ipykernel-6.29.0/.github/workflows/ci.yml
--- old/ipykernel-6.27.1/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.29.0/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -22,16 +22,16 @@
   fail-fast: false
   matrix:
 os: [ubuntu-latest, windows-latest, macos-latest]
-python-version: ["3.8", "3.11"]
+python-version: ["3.8", "3.12"]
 include:
   - os: windows-latest
 python-version: "3.9"
   - os: ubuntu-latest
-python-version: "pypy-3.8"
+python-version: 

commit python-ipykernel for openSUSE:Factory

2023-12-21 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-12-21 23:38:34

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1840 (New)


Package is "python-ipykernel"

Thu Dec 21 23:38:34 2023 rev:44 rq:1134337 version:6.27.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-11-27 22:43:29.702100630 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1840/python-ipykernel.changes  
2023-12-21 23:38:47.074912191 +0100
@@ -1,0 +2,6 @@
+Wed Dec 20 21:56:25 UTC 2023 - Dirk Müller 
+
+- update to 6.27.1:
+  * Fix edit magic payload type #1171 (@blink1073)
+
+---

Old:

  ipykernel-6.27.0.tar.gz

New:

  ipykernel-6.27.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.YqqSaL/_old  2023-12-21 23:38:47.942943888 +0100
+++ /var/tmp/diff_new_pack.YqqSaL/_new  2023-12-21 23:38:47.946944035 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.27.0
+Version:6.27.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.27.0.tar.gz -> ipykernel-6.27.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.0/CHANGELOG.md 
new/ipykernel-6.27.1/CHANGELOG.md
--- old/ipykernel-6.27.0/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.27.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,22 @@
 
 
 
+## 6.27.1
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.27.0...f9c517e868462d05d6854204c2ad0a244db1cd19))
+
+### Bugs fixed
+
+- Fix edit magic payload type 
[#1171](https://github.com/ipython/ipykernel/pull/1171) 
([@blink1073](https://github.com/blink1073))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-11-21=2023-11-27=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-11-21..2023-11-27=Issues)
+
+
+
 ## 6.27.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.26.0...465d34483103d23f471a4795fe5fabb9cf7ac3f5))
@@ -26,8 +42,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-10-24..2023-11-21=Issues)
 | 
[@jjvraw](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajjvraw+updated%3A2023-10-24..2023-11-21=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2023-10-24..2023-11-21=Issues)
 
-
-
 ## 6.26.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.25.2...966e0a41fc61e7850378ae672e28202eb29b10b0))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.0/PKG-INFO 
new/ipykernel-6.27.1/PKG-INFO
--- old/ipykernel-6.27.0/PKG-INFO   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.27.1/PKG-INFO   2020-02-02 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 6.27.0
+Version: 6.27.1
 Summary: IPython Kernel for Jupyter
 Project-URL: Homepage, https://ipython.org
 Author-email: IPython Development Team 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.0/ipykernel/_version.py 
new/ipykernel-6.27.1/ipykernel/_version.py
--- old/ipykernel-6.27.0/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.27.1/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
@@ -5,7 +5,7 @@
 from typing import List
 
 # Version string must appear intact for hatch versioning
-__version__ = "6.27.0"
+__version__ = "6.27.1"
 
 # Build up version_info tuple for backwards compatibility
 pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.27.0/ipykernel/zmqshell.py 
new/ipykernel-6.27.1/ipykernel/zmqshell.py
--- old/ipykernel-6.27.0/ipykernel/zmqshell.py  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.27.1/ipykernel/zmqshell.py  2020-02-02 01:00:00.0 
+0100
@@ -302,7 +302,7 @@
 
 # Make sure we send to the client an absolute path, in case the working
 # directory of client and kernel don't match
-filename = Path(filename).resolve()
+filename = 

commit python-ipykernel for openSUSE:Factory

2023-09-25 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-09-25 20:02:43

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1770 (New)


Package is "python-ipykernel"

Mon Sep 25 20:02:43 2023 rev:42 rq:1113234 version:6.25.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-08-23 14:59:48.490225480 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1770/python-ipykernel.changes  
2023-09-25 20:58:17.913573588 +0200
@@ -1,0 +2,10 @@
+Sat Sep 23 16:44:53 UTC 2023 - Ben Greiner 
+
+- Update to 6.25.2
+  * Make iostream shutdown more robust #1143 (@blink1073)
+  * Don't call QApplication.setQuitOnLastWindowClosed(False). #1142
+(@anntzer)
+  * Avoid starting IOPub background thread after it's been stopped
+#1137 (@minrk)
+
+---

Old:

  ipykernel-6.25.1.tar.gz

New:

  ipykernel-6.25.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.m8N4KP/_old  2023-09-25 20:58:18.945610871 +0200
+++ /var/tmp/diff_new_pack.m8N4KP/_new  2023-09-25 20:58:18.945610871 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.25.1
+Version:6.25.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.25.1.tar.gz -> ipykernel-6.25.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.25.1/CHANGELOG.md 
new/ipykernel-6.25.2/CHANGELOG.md
--- old/ipykernel-6.25.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.25.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,24 @@
 
 
 
+## 6.25.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.25.1...9d3f7aecc4fe68f14ebcc4dad4b65b19676e820e))
+
+### Bugs fixed
+
+- Make iostream shutdown more robust 
[#1143](https://github.com/ipython/ipykernel/pull/1143) 
([@blink1073](https://github.com/blink1073))
+- Don't call QApplication.setQuitOnLastWindowClosed(False). 
[#1142](https://github.com/ipython/ipykernel/pull/1142) 
([@anntzer](https://github.com/anntzer))
+- Avoid starting IOPub background thread after it's been stopped 
[#1137](https://github.com/ipython/ipykernel/pull/1137) 
([@minrk](https://github.com/minrk))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-08-07=2023-09-04=c))
+
+[@anntzer](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aanntzer+updated%3A2023-08-07..2023-09-04=Issues)
 | 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-08-07..2023-09-04=Issues)
 | 
[@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2023-08-07..2023-09-04=Issues)
 | 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2023-08-07..2023-09-04=Issues)
+
+
+
 ## 6.25.1
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.25.0...18e54f31725d6645dd71a8749c9e1eb28281f804))
@@ -18,8 +36,6 @@
 
 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2023-07-25..2023-08-07=Issues)
 | 
[@vaishnavi17](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Avaishnavi17+updated%3A2023-07-25..2023-08-07=Issues)
 
-
-
 ## 6.25.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.24.0...09c3c359addf60e26078207990ad2ca932cf2613))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.25.1/PKG-INFO 
new/ipykernel-6.25.2/PKG-INFO
--- old/ipykernel-6.25.1/PKG-INFO   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.25.2/PKG-INFO   2020-02-02 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 6.25.1
+Version: 6.25.2
 Summary: IPython Kernel for Jupyter
 Project-URL: Homepage, https://ipython.org
 Author-email: IPython Development Team 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.25.1/ipykernel/_version.py 
new/ipykernel-6.25.2/ipykernel/_version.py
--- old/ipykernel-6.25.1/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.25.2/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
@@ -5,7 +5,7 @@
 from typing import List
 
 # Version string 

commit python-ipykernel for openSUSE:Factory

2023-08-23 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-08-23 14:58:38

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1766 (New)


Package is "python-ipykernel"

Wed Aug 23 14:58:38 2023 rev:41 rq:1105430 version:6.25.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-08-08 15:55:25.837179594 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1766/python-ipykernel.changes  
2023-08-23 14:59:48.490225480 +0200
@@ -1,0 +2,6 @@
+Wed Aug 23 08:18:35 UTC 2023 - Ben Greiner 
+
+- Fix spec-cleaner: The stupid sle15 python reset macro needs to
+  be before python_module calls
+
+---



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.X1OvyN/_old  2023-08-23 14:59:49.134226632 +0200
+++ /var/tmp/diff_new_pack.X1OvyN/_new  2023-08-23 14:59:49.138226639 +0200
@@ -16,6 +16,7 @@
 #
 
 
+%{?sle15_python_module_pythons}
 Name:   python-ipykernel
 Version:6.25.1
 Release:0
@@ -33,7 +34,6 @@
 Provides:   %{python_module jupyter-ipykernel-doc = %{version}}
 Obsoletes:  %{python_module jupyter-ipykernel-doc < %{version}}
 BuildArch:  noarch
-%{?sle15_python_module_pythons}
 # SECTION build-system
 BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module hatchling >= 1.4}


commit python-ipykernel for openSUSE:Factory

2023-08-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-08-08 15:55:09

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.22712 (New)


Package is "python-ipykernel"

Tue Aug  8 15:55:09 2023 rev:40 rq:1102796 version:6.25.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-08-07 15:29:01.448289243 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.22712/python-ipykernel.changes 
2023-08-08 15:55:25.837179594 +0200
@@ -1,0 +2,8 @@
+Mon Aug  7 17:17:39 UTC 2023 - Arun Persaud 
+
+- update to version 6.25.1:
+  * Bugs fixed
++ Modifying debugger to return the same breakpoints in 'debugInfo'
+  response as 'setBreakpoints' #1140 (@vaishnavi17)
+
+---

Old:

  ipykernel-6.25.0.tar.gz

New:

  ipykernel-6.25.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.sx3Upm/_old  2023-08-08 15:55:26.641184625 +0200
+++ /var/tmp/diff_new_pack.sx3Upm/_new  2023-08-08 15:55:26.645184650 +0200
@@ -16,9 +16,8 @@
 #
 
 
-%{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.25.0
+Version:6.25.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -34,6 +33,7 @@
 Provides:   %{python_module jupyter-ipykernel-doc = %{version}}
 Obsoletes:  %{python_module jupyter-ipykernel-doc < %{version}}
 BuildArch:  noarch
+%{?sle15_python_module_pythons}
 # SECTION build-system
 BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module hatchling >= 1.4}

++ ipykernel-6.25.0.tar.gz -> ipykernel-6.25.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.25.0/.pre-commit-config.yaml 
new/ipykernel-6.25.1/.pre-commit-config.yaml
--- old/ipykernel-6.25.0/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.25.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -21,7 +21,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-rev: 0.23.2
+rev: 0.23.3
 hooks:
   - id: check-github-workflows
 
@@ -31,12 +31,12 @@
   - id: mdformat
 
   - repo: https://github.com/psf/black
-rev: 23.3.0
+rev: 23.7.0
 hooks:
   - id: black
 
   - repo: https://github.com/astral-sh/ruff-pre-commit
-rev: v0.0.278
+rev: v0.0.281
 hooks:
   - id: ruff
 args: ["--fix"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.25.0/CHANGELOG.md 
new/ipykernel-6.25.1/CHANGELOG.md
--- old/ipykernel-6.25.0/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.25.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,24 @@
 
 
 
+## 6.25.1
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.25.0...18e54f31725d6645dd71a8749c9e1eb28281f804))
+
+### Bugs fixed
+
+- Modifying debugger to return the same breakpoints in 'debugInfo' response as 
'setBreakpoints' [#1140](https://github.com/ipython/ipykernel/pull/1140) 
([@vaishnavi17](https://github.com/vaishnavi17))
+
+### Maintenance and upkeep improvements
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-07-25=2023-08-07=c))
+
+[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2023-07-25..2023-08-07=Issues)
 | 
[@vaishnavi17](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Avaishnavi17+updated%3A2023-07-25..2023-08-07=Issues)
+
+
+
 ## 6.25.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.24.0...09c3c359addf60e26078207990ad2ca932cf2613))
@@ -24,8 +42,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-07-03..2023-07-25=Issues)
 | 
[@fecet](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Afecet+updated%3A2023-07-03..2023-07-25=Issues)
 | 
[@jasongrout](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ajasongrout+updated%3A2023-07-03..2023-07-25=Issues)
 | 
[@maartenbreddels](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Amaartenbreddels+updated%3A2023-07-03..2023-07-25=Issues)
 | 

commit python-ipykernel for openSUSE:Factory

2023-08-07 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-08-07 15:28:56

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.22712 (New)


Package is "python-ipykernel"

Mon Aug  7 15:28:56 2023 rev:39 rq:1102582 version:6.25.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-07-04 15:22:32.542264197 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.22712/python-ipykernel.changes 
2023-08-07 15:29:01.448289243 +0200
@@ -1,0 +2,20 @@
+Sat Aug  5 16:08:00 UTC 2023 - Arun Persaud 
+
+- update to version 6.25.0:
+  * Enhancements made
+- feat: let display hook handle clear_output #1135
+  (@maartenbreddels)
+  * Bugs fixed
+- Merge connection info into existing connection file if it
+  already exists #1133 (@jasongrout)
+  * Maintenance and upkeep improvements
+- Clean up lint #1134 (@blink1073)
+
+- change from version 6.24.0:
+  * New features added
+- Let get_parent decide the channel to get parent header
+  #1128 (@dby-tmwctw)
+  * Bugs fixed
+- Bugfix: binary stdout/stderr handling #1129 (@arieleiz)
+
+---

Old:

  ipykernel-6.23.3.tar.gz

New:

  ipykernel-6.25.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.dlT8ea/_old  2023-08-07 15:29:02.160293664 +0200
+++ /var/tmp/diff_new_pack.dlT8ea/_new  2023-08-07 15:29:02.164293689 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.23.3
+Version:6.25.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.23.3.tar.gz -> ipykernel-6.25.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.23.3/.github/workflows/ci.yml 
new/ipykernel-6.25.0/.github/workflows/ci.yml
--- old/ipykernel-6.23.3/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.25.0/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -137,7 +137,7 @@
   pip freeze
 
   - name: Run the tests
-timeout-minutes: 10
+timeout-minutes: 15
 run: pytest -W default -vv || pytest --vv -W default --lf
 
   test_miniumum_versions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.23.3/.pre-commit-config.yaml 
new/ipykernel-6.25.0/.pre-commit-config.yaml
--- old/ipykernel-6.23.3/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.25.0/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -21,7 +21,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-rev: 0.23.1
+rev: 0.23.2
 hooks:
   - id: check-github-workflows
 
@@ -35,8 +35,8 @@
 hooks:
   - id: black
 
-  - repo: https://github.com/charliermarsh/ruff-pre-commit
-rev: v0.0.270
+  - repo: https://github.com/astral-sh/ruff-pre-commit
+rev: v0.0.278
 hooks:
   - id: ruff
 args: ["--fix"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.23.3/CHANGELOG.md 
new/ipykernel-6.25.0/CHANGELOG.md
--- old/ipykernel-6.23.3/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.25.0/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,48 @@
 
 
 
+## 6.25.0
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.24.0...09c3c359addf60e26078207990ad2ca932cf2613))
+
+### Enhancements made
+
+- feat: let display hook handle clear_output 
[#1135](https://github.com/ipython/ipykernel/pull/1135) 
([@maartenbreddels](https://github.com/maartenbreddels))
+
+### Bugs fixed
+
+- Merge connection info into existing connection file if it already exists 
[#1133](https://github.com/ipython/ipykernel/pull/1133) 
([@jasongrout](https://github.com/jasongrout))
+
+### Maintenance and upkeep improvements
+
+- Clean up lint [#1134](https://github.com/ipython/ipykernel/pull/1134) 
([@blink1073](https://github.com/blink1073))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-07-03=2023-07-25=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2023-07-03..2023-07-25=Issues)
 | 

commit python-ipykernel for openSUSE:Factory

2023-07-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-07-04 15:22:03

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.23466 (New)


Package is "python-ipykernel"

Tue Jul  4 15:22:03 2023 rev:38 rq:1096638 version:6.23.3

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-06-04 00:12:42.273570604 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.23466/python-ipykernel.changes 
2023-07-04 15:22:32.542264197 +0200
@@ -1,0 +2,18 @@
+Sun Jul  2 06:34:01 UTC 2023 - Ben Greiner 
+
+- Fix test suite hangs
+- Don't assume only Tumbleweed can have more than one flavor
+
+---
+Sat Jul  1 16:27:15 UTC 2023 - Ben Greiner 
+
+- Update to 6.23.3
+  * Check existence of connection_file before writing #1127
+(@fecet)
+- Release 6.23.2
+  * Avoid ResourceWarning on implicitly closed event pipe sockets
+#1125 (@minrk)
+  * fix: protect stdout/stderr restoration in
+InProcessKernel._redirected_io #1122 (@charles-cooper)
+
+---

Old:

  ipykernel-6.23.1.tar.gz

New:

  ipykernel-6.23.3.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.Sz6K4l/_old  2023-07-04 15:22:33.298268741 +0200
+++ /var/tmp/diff_new_pack.Sz6K4l/_new  2023-07-04 15:22:33.302268765 +0200
@@ -16,15 +16,15 @@
 #
 
 
+%{?sle15_python_module_pythons}
 Name:   python-ipykernel
-Version:6.23.1
+Version:6.23.3
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
-Requires:   jupyter-jupyter-client >= 6.1.12
 Provides:   python-jupyter_ipykernel = %{version}
 Obsoletes:  python-jupyter_ipykernel < %{version}
 Provides:   %{python_module ipykernel-doc = %{version}}
@@ -55,6 +55,7 @@
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
 BuildRequires:  %{python_module jupyter-core >= 5.1 or (%python-jupyter-core 
>= 4.12 with %python-jupyter-core < 5.0)}
+Requires:   jupyter-jupyter-client >= 6.1.12
 Requires:   python-comm >= 0.1.1
 Requires:   python-debugpy >= 1.6.5
 Requires:   python-ipython >= 7.23.1
@@ -96,7 +97,6 @@
 %install
 %pyproject_install
 
-%if 0%{?suse_version} >= 1550
 # use the symlink for the default python3 flavor, which was installed during 
the install but used python3.X name
 # from the primary flavor.
 sed -i "s|$(readlink -f python3)|python3|" 
%{buildroot}%{_jupyter_kernel_dir}/python3/kernel.json
@@ -107,15 +107,14 @@
 --name python%{$python_bin_suffix} \
 --display-name 'Python %{$python_bin_suffix} (ipykernel)'
 }
-%endif
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 %fdupes  %{buildroot}%{_jupyter_kernel_dir}
 
 %check
-# flaky: bad timings in obs often cause this to fail
-donttest="test_shutdown_subprocesses"
 # fails in obs setups
 ignoretests="--ignore ipykernel/tests/test_debugger.py"
+# flaky obs timeouts
+donttest="test_init_ipc_socket"
 # we don't want ipyparallel and its dependencies in Ring1
 ignoretests="$ignoretests --ignore ipykernel/tests/test_pickleutil.py"
 donttest="$donttest or test_do_apply"
@@ -128,9 +127,7 @@
 %{python_sitelib}/ipykernel_launcher.py
 %{python_sitelib}/ipykernel-%{version}*-info
 %pycache_only %{python_sitelib}/__pycache__/ipykernel_launcher*.pyc
-%if 0%{?suse_version} >= 1550
 %{_jupyter_kernel_dir}/python%{python_bin_suffix}
-%endif
 %if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
 %{_jupyter_kernel_dir}/python3
 %endif

++ ipykernel-6.23.1.tar.gz -> ipykernel-6.23.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.23.1/.pre-commit-config.yaml 
new/ipykernel-6.23.3/.pre-commit-config.yaml
--- old/ipykernel-6.23.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.23.3/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -21,7 +21,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-rev: 0.22.0
+rev: 0.23.1
 hooks:
   - id: check-github-workflows
 
@@ -36,7 +36,7 @@
   - id: black
 
   - repo: https://github.com/charliermarsh/ruff-pre-commit
-rev: v0.0.263

commit python-ipykernel for openSUSE:Factory

2023-06-03 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-06-04 00:12:32

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.15902 (New)


Package is "python-ipykernel"

Sun Jun  4 00:12:32 2023 rev:37 rq:1090502 version:6.23.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-04-04 21:27:51.331725423 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.15902/python-ipykernel.changes 
2023-06-04 00:12:42.273570604 +0200
@@ -1,0 +2,11 @@
+Fri Jun  2 12:42:05 UTC 2023 - Ben Greiner 
+
+- Update to 6.23.1
+  * Avoid echoing onto a captured FD # (@minrk)
+- Release 6.23.0
+  * Support control<>iopub messages to e.g. unblock comm_msg from
+command execution #1114 (@tkrabel-db)
+  * Add outstream hook similar to display publisher #1110
+(@maartenbreddels)
+
+---

Old:

  ipykernel-6.22.0.tar.gz

New:

  ipykernel-6.23.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.RJ7VWM/_old  2023-06-04 00:12:42.933574550 +0200
+++ /var/tmp/diff_new_pack.RJ7VWM/_new  2023-06-04 00:12:42.937574573 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.22.0
+Version:6.23.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.22.0.tar.gz -> ipykernel-6.23.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.22.0/.github/workflows/ci.yml 
new/ipykernel-6.23.1/.github/workflows/ci.yml
--- old/ipykernel-6.22.0/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.23.1/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -57,17 +57,24 @@
 run: |
   hatch run cov:nowarn || hatch run test:nowarn --lf
 
-  - name: Coverage
-run: |
-  pip install codecov coverage[toml]
-  codecov
-
   - name: Check Launcher
 run: |
   pip install .
   cd $HOME
   python -m ipykernel_launcher --help
 
+  - uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1
+
+  coverage:
+runs-on: ubuntu-latest
+needs:
+  - build
+steps:
+  - uses: actions/checkout@v3
+  - uses: jupyterlab/maintainer-tools/.github/actions/report-coverage@v1
+with:
+  fail_under: 80
+
   test_lint:
 name: Test Lint
 runs-on: ubuntu-latest
@@ -143,6 +150,11 @@
 uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
 with:
   dependency_type: minimum
+
+  - name: List installed packages
+run: |
+  hatch run test:list
+
   - name: Run the unit tests
 run: |
   hatch run test:nowarn || hatch run test:nowarn --lf
@@ -190,7 +202,7 @@
   tests_check: # This job does nothing and is only used for the branch 
protection
 if: always()
 needs:
-  - build
+  - coverage
   - test_docs
   - test_without_debugpy
   - test_miniumum_versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.22.0/.pre-commit-config.yaml 
new/ipykernel-6.23.1/.pre-commit-config.yaml
--- old/ipykernel-6.22.0/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.23.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -21,7 +21,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-rev: 0.21.0
+rev: 0.22.0
 hooks:
   - id: check-github-workflows
 
@@ -31,12 +31,12 @@
   - id: mdformat
 
   - repo: https://github.com/psf/black
-rev: 23.1.0
+rev: 23.3.0
 hooks:
   - id: black
 
   - repo: https://github.com/charliermarsh/ruff-pre-commit
-rev: v0.0.254
+rev: v0.0.263
 hooks:
   - id: ruff
 args: ["--fix"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.22.0/.readthedocs.yaml 
new/ipykernel-6.23.1/.readthedocs.yaml
--- old/ipykernel-6.22.0/.readthedocs.yaml  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.23.1/.readthedocs.yaml  2020-02-02 01:00:00.0 
+0100
@@ -1,8 +1,14 @@
 version: 2
+
+build:
+  os: ubuntu-22.04
+  tools:
+python: "3.11"
+
 sphinx:
   configuration: docs/conf.py
+
 python:
-  version: 3.8
   install:
 # install itself with pip install .
 - method: pip
diff 

commit python-ipykernel for openSUSE:Factory

2023-04-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-04-04 21:27:29

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.19717 (New)


Package is "python-ipykernel"

Tue Apr  4 21:27:29 2023 rev:36 rq:1077234 version:6.22.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-02-06 14:15:18.516538256 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.19717/python-ipykernel.changes 
2023-04-04 21:27:51.331725423 +0200
@@ -1,0 +2,17 @@
+Tue Apr  4 14:58:26 UTC 2023 - Ben Greiner 
+
+- Update to 6.22.0
+  * Deprecate Comm class + Fix incompatibility with ipywidgets
+#1097 (@martinRenou)
+
+---
+Sun Mar 19 16:23:32 UTC 2023 - Ben Greiner 
+
+- Update to 6.21.3
+  * Fix interrupt reply #1101 (@garlandz-db)
+- Release 6.21.2
+  * Un-expose __file__ and expose __session__ instead. #1095
+(@Carreau)
+  * Remove test_enter_eventloop #1084 (@davidbrochart)
+
+---

Old:

  ipykernel-6.21.1.tar.gz

New:

  ipykernel-6.22.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.yI38HW/_old  2023-04-04 21:27:52.171730191 +0200
+++ /var/tmp/diff_new_pack.yI38HW/_new  2023-04-04 21:27:52.179730236 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.21.1
+Version:6.22.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -51,7 +51,7 @@
 BuildRequires:  %{python_module nest-asyncio}
 BuildRequires:  %{python_module packaging}
 BuildRequires:  %{python_module psutil}
-BuildRequires:  %{python_module pyzmq >= 17}
+BuildRequires:  %{python_module pyzmq >= 20}
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
 BuildRequires:  %{python_module jupyter-core >= 5.1 or (%python-jupyter-core 
>= 4.12 with %python-jupyter-core < 5.0)}
@@ -63,7 +63,7 @@
 Requires:   python-nest-asyncio
 Requires:   python-packaging
 Requires:   python-psutil
-Requires:   python-pyzmq >= 17
+Requires:   python-pyzmq >= 20
 Requires:   python-tornado >= 6.1
 Requires:   python-traitlets >= 5.4.0
 Requires:   (python-jupyter-core >= 5.1 or (python-jupyter-core >= 4.12 
with python-jupyter-core < 5.0))
@@ -123,7 +123,7 @@
 
 %files %{python_files}
 %doc README.md
-%license COPYING.md
+%license LICENSE
 %{python_sitelib}/ipykernel
 %{python_sitelib}/ipykernel_launcher.py
 %{python_sitelib}/ipykernel-%{version}*-info

++ ipykernel-6.21.1.tar.gz -> ipykernel-6.22.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.21.1/.github/workflows/downstream.yml 
new/ipykernel-6.22.0/.github/workflows/downstream.yml
--- old/ipykernel-6.21.1/.github/workflows/downstream.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.22.0/.github/workflows/downstream.yml   2020-02-02 
01:00:00.0 +0100
@@ -38,6 +38,7 @@
 uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
 with:
   package_name: ipywidgets
+  test_command: pytest -vv -raXxs -k \"not deprecation_fa_icons and 
not tooltip_deprecation and not on_submit_deprecation\" -W default --durations 
10 --color=yes
 
   jupyter_client:
 runs-on: ubuntu-latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.21.1/.pre-commit-config.yaml 
new/ipykernel-6.22.0/.pre-commit-config.yaml
--- old/ipykernel-6.21.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.22.0/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -21,7 +21,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/python-jsonschema/check-jsonschema
-rev: 0.19.2
+rev: 0.21.0
 hooks:
   - id: check-github-workflows
 
@@ -31,12 +31,12 @@
   - id: mdformat
 
   - repo: https://github.com/psf/black
-rev: 22.12.0
+rev: 23.1.0
 hooks:
   - id: black
 
   - repo: https://github.com/charliermarsh/ruff-pre-commit
-rev: v0.0.236
+rev: v0.0.254
 hooks:
   - id: ruff
 args: ["--fix"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.21.1/CHANGELOG.md 
new/ipykernel-6.22.0/CHANGELOG.md
--- old/ipykernel-6.21.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ 

commit python-ipykernel for openSUSE:Factory

2023-02-06 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-02-06 14:15:17

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.4462 (New)


Package is "python-ipykernel"

Mon Feb  6 14:15:17 2023 rev:35 rq:1063284 version:6.21.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-01-24 20:31:54.004237819 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.4462/python-ipykernel.changes  
2023-02-06 14:15:18.516538256 +0100
@@ -1,0 +2,9 @@
+Sun Feb  5 15:09:43 UTC 2023 - Ben Greiner 
+
+- Update to 6.21.1
+  * Restore nest-asyncio for tk loop #1086 (@blink1073)
+- Release 6.21.0
+  * Expose session start file in file. #1078 (@Carreau)
+  * Add copy_to_globals debug request handling #1055 (@brichet)
+
+---

Old:

  ipykernel-6.20.2.tar.gz

New:

  ipykernel-6.21.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.LNbhv7/_old  2023-02-06 14:15:19.052540928 +0100
+++ /var/tmp/diff_new_pack.LNbhv7/_new  2023-02-06 14:15:19.064540987 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.20.2
+Version:6.21.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -44,7 +44,7 @@
 # /SECTION
 # SECTION dependencies
 BuildRequires:  %{python_module comm >= 0.1.1}
-BuildRequires:  %{python_module debugpy >= 1.0}
+BuildRequires:  %{python_module debugpy >= 1.6.5}
 BuildRequires:  %{python_module ipython >= 7.23.1}
 BuildRequires:  %{python_module jupyter-client >= 6.1.12}
 BuildRequires:  %{python_module matplotlib-inline >= 0.1}
@@ -54,8 +54,9 @@
 BuildRequires:  %{python_module pyzmq >= 17}
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
+BuildRequires:  %{python_module jupyter-core >= 5.1 or (%python-jupyter-core 
>= 4.12 with %python-jupyter-core < 5.0)}
 Requires:   python-comm >= 0.1.1
-Requires:   python-debugpy >= 1.0
+Requires:   python-debugpy >= 1.6.5
 Requires:   python-ipython >= 7.23.1
 Requires:   python-jupyter-client >= 6.1.12
 Requires:   python-matplotlib-inline >= 0.1
@@ -65,6 +66,7 @@
 Requires:   python-pyzmq >= 17
 Requires:   python-tornado >= 6.1
 Requires:   python-traitlets >= 5.4.0
+Requires:   (python-jupyter-core >= 5.1 or (python-jupyter-core >= 4.12 
with python-jupyter-core < 5.0))
 # /SECTION
 # SECTION test requirements
 BuildRequires:  %{python_module flaky}

++ ipykernel-6.20.2.tar.gz -> ipykernel-6.21.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.2/.github/workflows/ci.yml 
new/ipykernel-6.21.1/.github/workflows/ci.yml
--- old/ipykernel-6.20.2/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.21.1/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -4,6 +4,8 @@
   push:
 branches: ["main"]
   pull_request:
+  schedule:
+- cron: "0 0 * * *"
 
 concurrency:
   group: ci-${{ github.ref }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.2/.github/workflows/downstream.yml 
new/ipykernel-6.21.1/.github/workflows/downstream.yml
--- old/ipykernel-6.20.2/.github/workflows/downstream.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.21.1/.github/workflows/downstream.yml   2020-02-02 
01:00:00.0 +0100
@@ -90,13 +90,11 @@
 steps:
   - name: Checkout
 uses: actions/checkout@v3
-
   - name: Setup Python
 uses: actions/setup-python@v4
 with:
   python-version: "3.9"
   architecture: "x64"
-
   - name: Install System Packages
 run: |
   sudo apt-get update
@@ -109,16 +107,46 @@
   cd qtconsole
   ${pythonLocation}/bin/python -m pip install -e ".[test]"
   ${pythonLocation}/bin/python -m pip install pyqt5
-  - name: Install Jupyter-Client changes
+  - name: Install Ipykernel changes
 shell: bash -l {0}
 run: ${pythonLocation}/bin/python -m pip install -e .
-
   - name: Test qtconsole
 shell: bash -l {0}
 run: |
   cd ${GITHUB_WORKSPACE}/../qtconsole
   xvfb-run --auto-servernum ${pythonLocation}/bin/python -m pytest -x 
-vv -s --full-trace --color=yes qtconsole
 
+  spyder_kernels:
+runs-on: ubuntu-latest
+timeout-minutes: 20
+steps:
+  - name: Checkout
+

commit python-ipykernel for openSUSE:Factory

2023-01-24 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-01-24 19:41:56

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.32243 (New)


Package is "python-ipykernel"

Tue Jan 24 19:41:56 2023 rev:34 rq:1060266 version:6.20.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2023-01-15 17:58:08.510194261 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.32243/python-ipykernel.changes 
2023-01-24 20:31:54.004237819 +0100
@@ -1,0 +2,6 @@
+Sun Jan 22 12:56:21 UTC 2023 - Ben Greiner 
+
+- Update to 6.20.2
+  * Fix Exception in OutStream.close() #1076 (@ilyasher)
+
+---

Old:

  ipykernel-6.20.1.tar.gz

New:

  ipykernel-6.20.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.B6BMxA/_old  2023-01-24 20:31:54.488240380 +0100
+++ /var/tmp/diff_new_pack.B6BMxA/_new  2023-01-24 20:31:54.492240401 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.20.1
+Version:6.20.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.20.1.tar.gz -> ipykernel-6.20.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.1/CHANGELOG.md 
new/ipykernel-6.20.2/CHANGELOG.md
--- old/ipykernel-6.20.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.20.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,22 @@
 
 
 
+## 6.20.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.20.1...203ee2bce0b506257bd561d082e983330d1ebd14))
+
+### Bugs fixed
+
+- Fix Exception in OutStream.close() 
[#1076](https://github.com/ipython/ipykernel/pull/1076) 
([@ilyasher](https://github.com/ilyasher))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2023-01-09=2023-01-16=c))
+
+[@ilyasher](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ailyasher+updated%3A2023-01-09..2023-01-16=Issues)
+
+
+
 ## 6.20.1
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.20.0...5f07abc22a1c75672f7bee129505f19c954a7c36))
@@ -25,8 +41,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-12-26..2023-01-09=Issues)
 | 
[@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2022-12-26..2023-01-09=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2022-12-26..2023-01-09=Issues)
 
-
-
 ## 6.20.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.19.4...fbea757e117c1d3b0da29a40b4abcf3133a310f4))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.1/PKG-INFO 
new/ipykernel-6.20.2/PKG-INFO
--- old/ipykernel-6.20.1/PKG-INFO   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.20.2/PKG-INFO   2020-02-02 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 6.20.1
+Version: 6.20.2
 Summary: IPython Kernel for Jupyter
 Project-URL: Homepage, https://ipython.org
 Author-email: IPython Development Team 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.1/ipykernel/_version.py 
new/ipykernel-6.20.2/ipykernel/_version.py
--- old/ipykernel-6.20.1/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.20.2/ipykernel/_version.py  2020-02-02 01:00:00.0 
+0100
@@ -5,7 +5,7 @@
 from typing import List
 
 # Version string must appear intact for hatch versioning
-__version__ = "6.20.1"
+__version__ = "6.20.2"
 
 # Build up version_info tuple for backwards compatibility
 pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.20.1/ipykernel/iostream.py 
new/ipykernel-6.20.2/ipykernel/iostream.py
--- old/ipykernel-6.20.1/ipykernel/iostream.py  2020-02-02 01:00:00.0 
+0100
+++ new/ipykernel-6.20.2/ipykernel/iostream.py  2020-02-02 01:00:00.0 
+0100
@@ -401,6 +401,7 @@
 self._buffer = StringIO()
 self.echo = None
 self._isatty = bool(isatty)
+self._should_watch = False
 
 if (
 watchfd
@@ -449,7 +450,7 @@
 
 def close(self):
 """Close 

commit python-ipykernel for openSUSE:Factory

2023-01-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2023-01-15 17:58:00

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.32243 (New)


Package is "python-ipykernel"

Sun Jan 15 17:58:00 2023 rev:33 rq:1058372 version:6.20.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-12-28 10:54:12.644009882 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.32243/python-ipykernel.changes 
2023-01-15 17:58:08.510194261 +0100
@@ -1,0 +2,10 @@
+Sat Jan 14 13:37:20 UTC 2023 - Ben Greiner 
+
+- Update to 6.20.1
+  * Don't raise error when trying to create another Qt app for Qt
+eventloop #1071 (@ccordoba12)
+  * Fix types and sync lint deps #1070 (@blink1073)
+- Release 6.20.0
+  * ENH: add %gui support for Qt6 #1054 (@shaperilio)
+
+---

Old:

  ipykernel-6.19.4.tar.gz

New:

  ipykernel-6.20.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.u48fBD/_old  2023-01-15 17:58:09.106197798 +0100
+++ /var/tmp/diff_new_pack.u48fBD/_new  2023-01-15 17:58:09.110197822 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ipykernel
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.19.4
+Version:6.20.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.19.4.tar.gz -> ipykernel-6.20.1.tar.gz ++
 3038 lines of diff (skipped)


commit python-ipykernel for openSUSE:Factory

2022-12-28 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-12-28 10:54:11

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1563 (New)


Package is "python-ipykernel"

Wed Dec 28 10:54:11 2022 rev:32 rq:1045315 version:6.19.4

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-11-07 13:51:24.855708057 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1563/python-ipykernel.changes  
2022-12-28 10:54:12.644009882 +0100
@@ -1,0 +2,49 @@
+Sun Dec 25 17:46:14 UTC 2022 - Ben Greiner 
+
+- Update to 6.19.4
+  * Don't pass None kernels to logging configurable in Comm #1061
+(@bollwyvl)
+- Release  6.19.3
+  * format dates as ISO8601 #1057 (@GRcharles)
+  * Fix comms and add qtconsole downstream test #1056 (@blink1073)
+  * Fix lint #1058 (@blink1073)
+  * Fix comms and add qtconsole downstream test #1056 (@blink1073)
+- Release  6.19.2
+  * Fix error in %edit magic #1053 (@ccordoba12)
+- Release  6.19.1
+  * fix: too many arguments dropped when passing to base comm
+constructor #1051 (@maartenbreddels)
+- Release 6.19.0
+  * Fix: there can be only one comm_manager #1049
+(@maartenbreddels)
+  * Adopt ruff and address lint #1046 (@blink1073)
+- Release 6.18.3
+  * Fix Comm interface for downstream users #1042
+(@maartenbreddels)
+- Release 6.18.2
+  * Configurables needs to be configurable #1037 (@Carreau)
+- Release 6.18.1
+  * fix: use comm package in backwards compatible way #1028
+(@maartenbreddels)
+  * Add more testing and deprecate the Gtk event loops #1036
+(@blink1073)
+  * More coverage improvements #1035 (@blink1073)
+  * Add more tests #1034 (@blink1073)
+  * Add more kernel tests #1032 (@blink1073)
+  * Add more coverage and add Readme badges #1031 (@blink1073)
+  * Clean up testing and coverage #1030 (@blink1073)
+  * Use base setup dependency type #1029 (@blink1073)
+- Release 6.18.0
+  * Add terminal color support #1025 (@blink1073)
+  * Extract the Comm Python package #973 (@martinRenou)
+  * Add windows coverage and clean up workflows #1023 (@blink1073)
+  * Increase coverage #1021 (@blink1073)
+  * Allow releasing from repo #1020 (@blink1073)
+- Release 6.17.1
+  * Ignore the new Jupyter_core deprecation warning in CI #1019
+(@jasongrout)
+  * Bump actions/checkout from 2 to 3 #1018 (@dependabot)
+  * Add dependabot #1017 (@blink1073)
+  * Add pyupgrade to pre-commit #1014 (@blink1073)
+
+---

Old:

  ipykernel-6.17.0.tar.gz

New:

  ipykernel-6.19.4.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.uqJfUZ/_old  2022-12-28 10:54:13.572014699 +0100
+++ /var/tmp/diff_new_pack.uqJfUZ/_new  2022-12-28 10:54:13.576014721 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.17.0
+Version:6.19.4
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -43,6 +43,7 @@
 BuildRequires:  python-rpm-macros
 # /SECTION
 # SECTION dependencies
+BuildRequires:  %{python_module comm >= 0.1.1}
 BuildRequires:  %{python_module debugpy >= 1.0}
 BuildRequires:  %{python_module ipython >= 7.23.1}
 BuildRequires:  %{python_module jupyter-client >= 6.1.12}
@@ -53,6 +54,7 @@
 BuildRequires:  %{python_module pyzmq >= 17}
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
+Requires:   python-comm >= 0.1.1
 Requires:   python-debugpy >= 1.0
 Requires:   python-ipython >= 7.23.1
 Requires:   python-jupyter-client >= 6.1.12
@@ -62,12 +64,13 @@
 Requires:   python-psutil
 Requires:   python-pyzmq >= 17
 Requires:   python-tornado >= 6.1
-Requires:   python-traitlets >= 5.1.0
+Requires:   python-traitlets >= 5.4.0
 # /SECTION
 # SECTION test requirements
 BuildRequires:  %{python_module flaky}
 BuildRequires:  %{python_module matplotlib}
 BuildRequires:  %{python_module pytest >= 7.0}
+BuildRequires:  %{python_module pytest-asyncio}
 BuildRequires:  %{python_module pytest-timeout}
 # we don't want ipyparallel and its dependencies in Ring1, see below
 #BuildRequires:  #{python_module ipyparallel}
@@ -83,8 +86,6 @@
 
 %prep
 %autosetup -p1 -n ipykernel-%{version}
-# 5 tests out of 116, we don't want ipyparallel and its dependencies in Ring1
-rm ipykernel/tests/test_pickleutil.py
 sed -i -e 's/--color=yes//' pyproject.toml
 
 %build
@@ -113,6 +114,9 @@
 donttest="test_shutdown_subprocesses"
 # fails in obs setups
 ignoretests="--ignore ipykernel/tests/test_debugger.py"

commit python-ipykernel for openSUSE:Factory

2022-11-07 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-11-07 13:51:22

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1597 (New)


Package is "python-ipykernel"

Mon Nov  7 13:51:22 2022 rev:31 rq:1033840 version:6.17.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-10-27 13:52:35.244084239 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1597/python-ipykernel.changes  
2022-11-07 13:51:24.855708057 +0100
@@ -1,0 +2,12 @@
+Sat Nov  5 19:41:17 UTC 2022 - Arun Persaud 
+
+- specfile:
+  * require python >= 3.8
+
+- update to version 6.17.0:
+  * Enhancements made
++ Enable webagg in %matplotlib #1012 (@zhizheng1)
+  * Maintenance and upkeep improvements
++ Update supported pythons to 3.8-3.11 #1013 (@blink1073)
+
+---

Old:

  ipykernel-6.16.2.tar.gz

New:

  ipykernel-6.17.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.giSpt4/_old  2022-11-07 13:51:25.303710575 +0100
+++ /var/tmp/diff_new_pack.giSpt4/_new  2022-11-07 13:51:25.307710598 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.16.2
+Version:6.17.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -35,7 +35,7 @@
 Obsoletes:  %{python_module jupyter-ipykernel-doc < %{version}}
 BuildArch:  noarch
 # SECTION build-system
-BuildRequires:  %{python_module base >= 3.7}
+BuildRequires:  %{python_module base >= 3.8}
 BuildRequires:  %{python_module hatchling >= 1.4}
 BuildRequires:  %{python_module pip}
 BuildRequires:  fdupes

++ ipykernel-6.16.2.tar.gz -> ipykernel-6.17.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.2/.github/workflows/ci.yml 
new/ipykernel-6.17.0/.github/workflows/ci.yml
--- old/ipykernel-6.16.2/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.17.0/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -20,15 +20,12 @@
   fail-fast: false
   matrix:
 os: [ubuntu-latest, windows-latest, macos-latest]
-python-version: ["3.7", "3.11"]
-exclude:
-   - os: macos-latest
- python-version: "3.11"  # not yet available
+python-version: ["3.8", "3.11"]
 include:
   - os: windows-latest
 python-version: "3.9"
   - os: ubuntu-latest
-python-version: "pypy-3.7"
+python-version: "pypy-3.8"
   - os: macos-latest
 python-version: "3.10"
   - os: ubuntu-latest
@@ -137,7 +134,7 @@
   - name: Base Setup
 uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
 with:
-  python_version: "3.7"
+  python_version: "3.8"
   - name: Install miniumum versions
 uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
   - name: Run the unit tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.2/CHANGELOG.md 
new/ipykernel-6.17.0/CHANGELOG.md
--- old/ipykernel-6.16.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.17.0/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,26 @@
 
 
 
+## 6.17.0
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.16.2...db00586a25a4f047a90386f4947e60ff1dbee2b6))
+
+### Enhancements made
+
+- Enable webagg in %matplotlib 
[#1012](https://github.com/ipython/ipykernel/pull/1012) 
([@zhizheng1](https://github.com/zhizheng1))
+
+### Maintenance and upkeep improvements
+
+- Update supported pythons to 3.8-3.11 
[#1013](https://github.com/ipython/ipykernel/pull/1013) 
([@blink1073](https://github.com/blink1073))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-10-25=2022-10-31=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-10-25..2022-10-31=Issues)
 | 
[@zhizheng1](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Azhizheng1+updated%3A2022-10-25..2022-10-31=Issues)
+
+
+
 ## 6.16.2
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.16.1...99706182995e0fd5431965d4c9d96a8ce7afae12))
@@ -16,8 +36,6 @@
 
 

commit python-ipykernel for openSUSE:Factory

2022-10-27 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-10-27 13:52:24

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2275 (New)


Package is "python-ipykernel"

Thu Oct 27 13:52:24 2022 rev:30 rq:1031304 version:6.16.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-10-23 16:33:19.879289942 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2275/python-ipykernel.changes  
2022-10-27 13:52:35.244084239 +0200
@@ -1,0 +2,7 @@
+Wed Oct 26 08:13:32 UTC 2022 - Ben Greiner 
+
+- Update to version 6.16.2
+  * Fix failing test and update matrix #1010 (@blink1073)
+- Disable debugger tests
+
+---

Old:

  ipykernel-6.16.1.tar.gz

New:

  ipykernel-6.16.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.zMOOON/_old  2022-10-27 13:52:35.924087644 +0200
+++ /var/tmp/diff_new_pack.zMOOON/_new  2022-10-27 13:52:35.936087704 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-ipykernel
-Version:6.16.1
+Version:6.16.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -65,11 +65,10 @@
 Requires:   python-traitlets >= 5.1.0
 # /SECTION
 # SECTION test requirements
-BuildRequires:  %{python_module curio}
 BuildRequires:  %{python_module flaky}
-BuildRequires:  %{python_module pytest >= 6.0}
+BuildRequires:  %{python_module matplotlib}
+BuildRequires:  %{python_module pytest >= 7.0}
 BuildRequires:  %{python_module pytest-timeout}
-BuildRequires:  %{python_module trio}
 # we don't want ipyparallel and its dependencies in Ring1, see below
 #BuildRequires:  #{python_module ipyparallel}
 # /SECTION
@@ -112,7 +111,9 @@
 %check
 # flaky: bad timings in obs often cause this to fail
 donttest="test_shutdown_subprocesses"
-%pytest -k "not ($donttest)"
+# fails in obs setups
+ignoretests="--ignore ipykernel/tests/test_debugger.py"
+%pytest -k "not ($donttest)" $ignoretests
 
 %files %{python_files}
 %doc README.md

++ ipykernel-6.16.1.tar.gz -> ipykernel-6.16.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.1/.github/workflows/ci.yml 
new/ipykernel-6.16.2/.github/workflows/ci.yml
--- old/ipykernel-6.16.1/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.16.2/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -20,15 +20,18 @@
   fail-fast: false
   matrix:
 os: [ubuntu-latest, windows-latest, macos-latest]
-python-version: ["3.7", "3.10"]
+python-version: ["3.7", "3.11"]
+exclude:
+   - os: macos-latest
+ python-version: "3.11"  # not yet available
 include:
   - os: windows-latest
 python-version: "3.9"
   - os: ubuntu-latest
 python-version: "pypy-3.7"
-  - os: ubuntu-latest
-python-version: "3.11-dev"
   - os: macos-latest
+python-version: "3.10"
+  - os: ubuntu-latest
 python-version: "3.8"
 steps:
   - name: Checkout
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.1/.pre-commit-config.yaml 
new/ipykernel-6.16.2/.pre-commit-config.yaml
--- old/ipykernel-6.16.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.16.2/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -73,13 +73,13 @@
 stages: [manual]
 
   - repo: https://github.com/pre-commit/mirrors-eslint
-rev: v8.25.0
+rev: v8.26.0
 hooks:
   - id: eslint
 stages: [manual]
 
   - repo: https://github.com/sirosen/check-jsonschema
-rev: 0.18.3
+rev: 0.18.4
 hooks:
   - id: check-jsonschema
 name: "Check GitHub Workflows"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.1/CHANGELOG.md 
new/ipykernel-6.16.2/CHANGELOG.md
--- old/ipykernel-6.16.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.16.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,22 @@
 
 
 
+## 6.16.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.16.1...99706182995e0fd5431965d4c9d96a8ce7afae12))
+
+### Maintenance and upkeep improvements
+
+- Fix failing test and update matrix 
[#1010](https://github.com/ipython/ipykernel/pull/1010) 

commit python-ipykernel for openSUSE:Factory

2022-10-23 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-10-23 16:33:05

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2275 (New)


Package is "python-ipykernel"

Sun Oct 23 16:33:05 2022 rev:29 rq:1030494 version:6.16.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-10-01 17:42:25.429590061 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2275/python-ipykernel.changes  
2022-10-23 16:33:19.879289942 +0200
@@ -1,0 +2,10 @@
+Sat Oct 22 03:37:06 UTC 2022 - Arun Persaud 
+
+- update to version 6.16.1:
+  * Bugs fixed
++ PR: Destroy tk app to avoid memory leak #1008 (@impact27)
+  * Maintenance and upkeep improvements
++ Maintenance cleanup #1006 (@blink1073)
++ Ignore warnings in prereleases test #1002 (@blink1073)
+
+---

Old:

  ipykernel-6.16.0.tar.gz

New:

  ipykernel-6.16.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.0EP77g/_old  2022-10-23 16:33:20.363291131 +0200
+++ /var/tmp/diff_new_pack.0EP77g/_new  2022-10-23 16:33:20.367291141 +0200
@@ -16,10 +16,8 @@
 #
 
 
-%{?!python_module:%define python_module() python3-%{**}}
-%define skip_python2 1
 Name:   python-ipykernel
-Version:6.16.0
+Version:6.16.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.16.0.tar.gz -> ipykernel-6.16.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.0/.flake8 new/ipykernel-6.16.1/.flake8
--- old/ipykernel-6.16.0/.flake82020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.16.1/.flake81970-01-01 01:00:00.0 +0100
@@ -1,17 +0,0 @@
-[flake8]
-ignore = E501, W503, E402
-builtins = c, get_config
-exclude =
-.cache,
-.github,
-docs,
-setup.py
-enable-extensions = G
-extend-ignore =
-G001, G002, G004, G200, G201, G202,
-# black adds spaces around ':'
-E203,
-per-file-ignores =
-# B011: Do not call assert False since python -O removes these calls
-# F841 local variable 'foo' is assigned to but never used
-ipykernel/tests/*: B011, F841
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.0/.github/workflows/check-release.yml 
new/ipykernel-6.16.1/.github/workflows/check-release.yml
--- old/ipykernel-6.16.0/.github/workflows/check-release.yml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.16.1/.github/workflows/check-release.yml2020-02-02 
01:00:00.0 +0100
@@ -11,30 +11,9 @@
 jobs:
   check_release:
 runs-on: ubuntu-latest
-strategy:
-  matrix:
-group: [check_release, link_check]
-  fail-fast: false
 steps:
-  - name: Checkout
-uses: actions/checkout@v2
-
-  - name: Checkout
-uses: actions/checkout@v2
-
-  - name: Base Setup
-uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
-
-  - name: Install Dependencies
-run: |
-  pip install -e .
-
-  - name: Check Release
-if: ${{ matrix.group == 'check_release' }}
-uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v1
+  - uses: actions/checkout@v2
+  - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
+  - uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
 with:
   token: ${{ secrets.GITHUB_TOKEN }}
-
-  - name: Run Link Check
-if: ${{ matrix.group == 'link_check' }}
-uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.16.0/.github/workflows/ci.yml 
new/ipykernel-6.16.1/.github/workflows/ci.yml
--- old/ipykernel-6.16.0/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.16.1/.github/workflows/ci.yml   2020-02-02 
01:00:00.0 +0100
@@ -11,7 +11,7 @@
 
 defaults:
   run:
-shell: bash
+shell: bash -eux {0}
 
 jobs:
   build:
@@ -26,6 +26,8 @@
 python-version: "3.9"
   - os: ubuntu-latest
 python-version: "pypy-3.7"
+  - os: ubuntu-latest
+python-version: "3.11-dev"
   - os: macos-latest
 python-version: "3.8"
 steps:
@@ -63,18 +65,18 @@
 timeout-minutes: 15
 if: ${{ !startsWith( matrix.python-version, 

commit python-ipykernel for openSUSE:Factory

2022-10-01 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-10-01 17:42:24

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2275 (New)


Package is "python-ipykernel"

Sat Oct  1 17:42:24 2022 rev:28 rq:1006526 version:6.16.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-09-15 22:57:38.540953151 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2275/python-ipykernel.changes  
2022-10-01 17:42:25.429590061 +0200
@@ -1,0 +2,9 @@
+Tue Sep 27 16:56:23 UTC 2022 - Arun Persaud 
+
+- update to version 6.16.0:
+  * Maintenance and upkeep improvements
++ Use hatch for version #998 (@blink1073)
++ Add client 8 support #996 (@blink1073)
++ Remove unused manifest file #994 (@blink1073)
+
+---

Old:

  ipykernel-6.15.3.tar.gz

New:

  ipykernel-6.16.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.0xtjG3/_old  2022-10-01 17:42:25.901590921 +0200
+++ /var/tmp/diff_new_pack.0xtjG3/_new  2022-10-01 17:42:25.905590929 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.15.3
+Version:6.16.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.15.3.tar.gz -> ipykernel-6.16.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.3/.pre-commit-config.yaml 
new/ipykernel-6.16.0/.pre-commit-config.yaml
--- old/ipykernel-6.15.3/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.16.0/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -66,7 +66,7 @@
 stages: [manual]
 
   - repo: https://github.com/sirosen/check-jsonschema
-rev: 0.18.2
+rev: 0.18.3
 hooks:
   - id: check-jsonschema
 name: "Check GitHub Workflows"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.3/CHANGELOG.md 
new/ipykernel-6.16.0/CHANGELOG.md
--- old/ipykernel-6.15.3/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.16.0/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,24 @@
 
 
 
+## 6.16.0
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.15.3...92292ad9d844e594e9c97f7f391149023e58de9e))
+
+### Maintenance and upkeep improvements
+
+- Use hatch for version [#998](https://github.com/ipython/ipykernel/pull/998) 
([@blink1073](https://github.com/blink1073))
+- Add client 8 support [#996](https://github.com/ipython/ipykernel/pull/996) 
([@blink1073](https://github.com/blink1073))
+- Remove unused manifest file 
[#994](https://github.com/ipython/ipykernel/pull/994) 
([@blink1073](https://github.com/blink1073))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-09-13=2022-09-26=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-09-13..2022-09-26=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2022-09-13..2022-09-26=Issues)
+
+
+
 ## 6.15.3
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.15.2...861b1242a7601f1608707ed8bbfb6e801914cb4a))
@@ -24,8 +42,6 @@
 
 
[@impact27](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aimpact27+updated%3A2022-08-29..2022-09-13=Issues)
 | 
[@JohanMabille](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3AJohanMabille+updated%3A2022-08-29..2022-09-13=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2022-08-29..2022-09-13=Issues)
 | 
[@steff456](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Asteff456+updated%3A2022-08-29..2022-09-13=Issues)
 
-
-
 ## 6.15.2
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.15.1...724753a185b0954f0e662c226b86dc8146c62bcb))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.3/MANIFEST.in 
new/ipykernel-6.16.0/MANIFEST.in
--- old/ipykernel-6.15.3/MANIFEST.in2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.16.0/MANIFEST.in1970-01-01 01:00:00.0 +0100
@@ -1,29 +0,0 @@
-include *.md
-include 

commit python-ipykernel for openSUSE:Factory

2022-09-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-09-15 22:57:36

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2083 (New)


Package is "python-ipykernel"

Thu Sep 15 22:57:36 2022 rev:27 rq:1003368 version:6.15.3

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-09-11 21:57:16.545615663 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2083/python-ipykernel.changes  
2022-09-15 22:57:38.540953151 +0200
@@ -1,0 +2,11 @@
+Tue Sep 13 15:42:50 UTC 2022 - Arun Persaud 
+
+- update to version 6.15.3:
+  * Bugs fixed
++ PR: Close memory leak #990 (@impact27)
++ Handle all possible exceptions when trying to import the
+  debugger #987 (@JohanMabille)
+  * Maintenance and upkeep improvements
++ Add python logo in svg format #984 (@steff456)
+
+---

Old:

  ipykernel-6.15.2.tar.gz

New:

  ipykernel-6.15.3.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.MuD2FP/_old  2022-09-15 22:57:39.044954574 +0200
+++ /var/tmp/diff_new_pack.MuD2FP/_new  2022-09-15 22:57:39.048954586 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.15.2
+Version:6.15.3
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.15.2.tar.gz -> ipykernel-6.15.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.2/.pre-commit-config.yaml 
new/ipykernel-6.15.3/.pre-commit-config.yaml
--- old/ipykernel-6.15.2/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.15.3/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -17,7 +17,7 @@
   - id: trailing-whitespace
 
   - repo: https://github.com/psf/black
-rev: 22.6.0
+rev: 22.8.0
 hooks:
   - id: black
 args: ["--line-length", "100"]
@@ -60,13 +60,13 @@
 stages: [manual]
 
   - repo: https://github.com/pre-commit/mirrors-eslint
-rev: v8.22.0
+rev: v8.23.1
 hooks:
   - id: eslint
 stages: [manual]
 
   - repo: https://github.com/sirosen/check-jsonschema
-rev: 0.17.1
+rev: 0.18.2
 hooks:
   - id: check-jsonschema
 name: "Check GitHub Workflows"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.2/CHANGELOG.md 
new/ipykernel-6.15.3/CHANGELOG.md
--- old/ipykernel-6.15.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.15.3/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,30 @@
 
 
 
+## 6.15.3
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.15.2...861b1242a7601f1608707ed8bbfb6e801914cb4a))
+
+### Bugs fixed
+
+- PR: Close memory leak [#990](https://github.com/ipython/ipykernel/pull/990) 
([@impact27](https://github.com/impact27))
+- Handle all possible exceptions when trying to import the debugger 
[#987](https://github.com/ipython/ipykernel/pull/987) 
([@JohanMabille](https://github.com/JohanMabille))
+
+### Maintenance and upkeep improvements
+
+- [pre-commit.ci] pre-commit autoupdate 
[#989](https://github.com/ipython/ipykernel/pull/989) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#985](https://github.com/ipython/ipykernel/pull/985) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- Add python logo in svg format 
[#984](https://github.com/ipython/ipykernel/pull/984) 
([@steff456](https://github.com/steff456))
+- [pre-commit.ci] pre-commit autoupdate 
[#982](https://github.com/ipython/ipykernel/pull/982) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-08-29=2022-09-13=c))
+
+[@impact27](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aimpact27+updated%3A2022-08-29..2022-09-13=Issues)
 | 
[@JohanMabille](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3AJohanMabille+updated%3A2022-08-29..2022-09-13=Issues)
 | 
[@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2022-08-29..2022-09-13=Issues)
 | 

commit python-ipykernel for openSUSE:Factory

2022-09-11 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-09-11 21:57:15

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2083 (New)


Package is "python-ipykernel"

Sun Sep 11 21:57:15 2022 rev:26 rq:1002371 version:6.15.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-07-14 16:33:28.372582901 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2083/python-ipykernel.changes  
2022-09-11 21:57:16.545615663 +0200
@@ -1,0 +2,7 @@
+Thu Sep  8 14:36:10 UTC 2022 - Arun Persaud 
+
+- update to version 6.15.2:
+  * Bugs fixed
++ _abort_queues is no longer async #942 (@rhelmot)
+
+---

Old:

  ipykernel-6.15.1.tar.gz

New:

  ipykernel-6.15.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.5fwAnz/_old  2022-09-11 21:57:17.089617194 +0200
+++ /var/tmp/diff_new_pack.5fwAnz/_new  2022-09-11 21:57:17.093617205 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.15.1
+Version:6.15.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.15.1.tar.gz -> ipykernel-6.15.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.1/.pre-commit-config.yaml 
new/ipykernel-6.15.2/.pre-commit-config.yaml
--- old/ipykernel-6.15.1/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
+++ new/ipykernel-6.15.2/.pre-commit-config.yaml2020-02-02 
01:00:00.0 +0100
@@ -30,19 +30,19 @@
 args: [--profile=black]
 
   - repo: https://github.com/pre-commit/mirrors-prettier
-rev: v2.7.1
+rev: v3.0.0-alpha.0
 hooks:
   - id: prettier
 
   - repo: https://github.com/PyCQA/doc8
-rev: 0.11.2
+rev: v1.0.0
 hooks:
   - id: doc8
 args: [--max-line-length=200]
 stages: [manual]
 
   - repo: https://github.com/pre-commit/mirrors-mypy
-rev: v0.961
+rev: v0.971
 hooks:
   - id: mypy
 exclude: "ipykernel.*tests"
@@ -52,25 +52,21 @@
 stages: [manual]
 
   - repo: https://github.com/pycqa/flake8
-rev: 4.0.1
+rev: 5.0.4
 hooks:
   - id: flake8
 additional_dependencies:
-  [
-"flake8-bugbear==20.1.4",
-"flake8-logging-format==0.6.0",
-"flake8-implicit-str-concat==0.2.0",
-  ]
+  ["flake8-bugbear==22.6.22", "flake8-implicit-str-concat==0.2.0"]
 stages: [manual]
 
   - repo: https://github.com/pre-commit/mirrors-eslint
-rev: v8.19.0
+rev: v8.22.0
 hooks:
   - id: eslint
 stages: [manual]
 
   - repo: https://github.com/sirosen/check-jsonschema
-rev: 0.16.2
+rev: 0.17.1
 hooks:
   - id: check-jsonschema
 name: "Check GitHub Workflows"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.15.1/CHANGELOG.md 
new/ipykernel-6.15.2/CHANGELOG.md
--- old/ipykernel-6.15.1/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
+++ new/ipykernel-6.15.2/CHANGELOG.md   2020-02-02 01:00:00.0 +0100
@@ -2,6 +2,32 @@
 
 
 
+## 6.15.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.15.1...724753a185b0954f0e662c226b86dc8146c62bcb))
+
+### Bugs fixed
+
+- `_abort_queues` is no longer async 
[#942](https://github.com/ipython/ipykernel/pull/942) 
([@rhelmot](https://github.com/rhelmot))
+
+### Maintenance and upkeep improvements
+
+- [pre-commit.ci] pre-commit autoupdate 
[#978](https://github.com/ipython/ipykernel/pull/978) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#977](https://github.com/ipython/ipykernel/pull/977) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#976](https://github.com/ipython/ipykernel/pull/976) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#974](https://github.com/ipython/ipykernel/pull/974) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#971](https://github.com/ipython/ipykernel/pull/971) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- [pre-commit.ci] pre-commit autoupdate 
[#968](https://github.com/ipython/ipykernel/pull/968) 
([@pre-commit-ci](https://github.com/pre-commit-ci))
+- 

commit python-ipykernel for openSUSE:Factory

2022-07-14 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-07-14 16:33:21

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1523 (New)


Package is "python-ipykernel"

Thu Jul 14 16:33:21 2022 rev:25 rq:988928 version:6.15.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-07-09 16:59:10.052447835 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1523/python-ipykernel.changes  
2022-07-14 16:33:28.372582901 +0200
@@ -1,0 +2,14 @@
+Sat Jul  9 13:30:40 UTC 2022 - Arun Persaud 
+
+- specfile:
+  * remove patch support-hatchling-14.patch (included upstream)
+
+- update to version 6.15.1:
+  * Bugs fixed
++ Fix inclusion of launcher file and check in CI #964 (@blink1073)
+  * Maintenance and upkeep improvements
++ [pre-commit.ci] pre-commit autoupdate #962 (@pre-commit-ci)
++ [pre-commit.ci] pre-commit autoupdate #961 (@pre-commit-ci)
++ [pre-commit.ci] pre-commit autoupdate #960 (@pre-commit-ci)
+
+---

Old:

  ipykernel-6.15.0.tar.gz
  support-hatchling-14.patch

New:

  ipykernel-6.15.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.3B7z8E/_old  2022-07-14 16:33:28.816583317 +0200
+++ /var/tmp/diff_new_pack.3B7z8E/_new  2022-07-14 16:33:28.820583321 +0200
@@ -19,15 +19,23 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.15.0
+Version:6.15.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM Support hatchling >= 1.4 gh#ipython/ipykernel#964
-Patch0: support-hatchling-14.patch
+Requires:   jupyter-jupyter-client >= 6.1.12
+Provides:   python-jupyter_ipykernel = %{version}
+Obsoletes:  python-jupyter_ipykernel < %{version}
+Provides:   %{python_module ipykernel-doc = %{version}}
+Obsoletes:  %{python_module ipykernel-doc < %{version}}
+Provides:   %{python_module jupyter_ipykernel-doc = %{version}}
+Obsoletes:  %{python_module jupyter_ipykernel-doc < %{version}}
+Provides:   %{python_module jupyter-ipykernel-doc = %{version}}
+Obsoletes:  %{python_module jupyter-ipykernel-doc < %{version}}
+BuildArch:  noarch
 # SECTION build-system
 BuildRequires:  %{python_module base >= 3.7}
 BuildRequires:  %{python_module hatchling >= 1.4}
@@ -37,16 +45,6 @@
 BuildRequires:  python-rpm-macros
 # /SECTION
 # SECTION dependencies
-Requires:   python-debugpy >= 1.0
-Requires:   python-ipython >= 7.23.1
-Requires:   python-jupyter-client >= 6.1.12
-Requires:   python-matplotlib-inline >= 0.1
-Requires:   python-nest-asyncio
-Requires:   python-packaging
-Requires:   python-psutil
-Requires:   python-pyzmq >= 17
-Requires:   python-tornado >= 6.1
-Requires:   python-traitlets >= 5.1.0
 BuildRequires:  %{python_module debugpy >= 1.0}
 BuildRequires:  %{python_module ipython >= 7.23.1}
 BuildRequires:  %{python_module jupyter-client >= 6.1.12}
@@ -57,26 +55,26 @@
 BuildRequires:  %{python_module pyzmq >= 17}
 BuildRequires:  %{python_module tornado >= 6.1}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
+Requires:   python-debugpy >= 1.0
+Requires:   python-ipython >= 7.23.1
+Requires:   python-jupyter-client >= 6.1.12
+Requires:   python-matplotlib-inline >= 0.1
+Requires:   python-nest-asyncio
+Requires:   python-packaging
+Requires:   python-psutil
+Requires:   python-pyzmq >= 17
+Requires:   python-tornado >= 6.1
+Requires:   python-traitlets >= 5.1.0
 # /SECTION
 # SECTION test requirements
-BuildRequires:  %{python_module pytest >= 6.0}
 BuildRequires:  %{python_module curio}
 BuildRequires:  %{python_module flaky}
+BuildRequires:  %{python_module pytest >= 6.0}
 BuildRequires:  %{python_module pytest-timeout}
 BuildRequires:  %{python_module trio}
 # we don't want ipyparallel and its dependencies in Ring1, see below
 #BuildRequires:  #{python_module ipyparallel}
 # /SECTION
-Requires:   jupyter-jupyter-client >= 6.1.12
-Provides:   python-jupyter_ipykernel = %{version}
-Obsoletes:  python-jupyter_ipykernel < %{version}
-Provides:   %{python_module ipykernel-doc = %{version}}
-Obsoletes:  %{python_module 

commit python-ipykernel for openSUSE:Factory

2022-07-09 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-07-09 16:59:05

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1523 (New)


Package is "python-ipykernel"

Sat Jul  9 16:59:05 2022 rev:24 rq:987883 version:6.15.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-06-24 08:45:09.191128601 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1523/python-ipykernel.changes  
2022-07-09 16:59:10.052447835 +0200
@@ -1,0 +2,6 @@
+Fri Jul  8 10:57:40 UTC 2022 - Steve Kowalik 
+
+- Add patch support-hatchling-14.patch:
+  * Support hatchling >= 1.4 
+
+---

New:

  support-hatchling-14.patch



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.selMHW/_old  2022-07-09 16:59:10.764448905 +0200
+++ /var/tmp/diff_new_pack.selMHW/_new  2022-07-09 16:59:10.768448912 +0200
@@ -26,9 +26,11 @@
 Group:  Development/Languages/Python
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM Support hatchling >= 1.4 gh#ipython/ipykernel#964
+Patch0: support-hatchling-14.patch
 # SECTION build-system
 BuildRequires:  %{python_module base >= 3.7}
-BuildRequires:  %{python_module hatchling}
+BuildRequires:  %{python_module hatchling >= 1.4}
 BuildRequires:  %{python_module pip}
 BuildRequires:  fdupes
 BuildRequires:  jupyter-jupyter_core-filesystem

++ support-hatchling-14.patch ++
>From 694a01ee595efb29455a019dcc880746b5ab00b3 Mon Sep 17 00:00:00 2001
From: Steven Silvester 
Date: Fri, 8 Jul 2022 05:30:41 -0500
Subject: [PATCH 1/2] fix inclusion of launcher file and check in CI

---
 .github/workflows/ci.yml | 4 
 pyproject.toml   | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 151dd3e9..4548c1a8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -77,6 +77,10 @@ jobs:
 run: |
   codecov
 
+  - name: Check Launcher
+run: cd $HOME
+  python -m ipykernel_launcher --help
+
   pre-commit:
 name: pre-commit
 runs-on: ubuntu-latest
diff --git a/pyproject.toml b/pyproject.toml
index 3c6487ab..5de353fb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
 [build-system]
-requires = ["hatchling>=0.25", "jupyter_client>=6"]
+requires = ["hatchling>=1.4", "jupyter_client>=6"]
 build-backend = "hatchling.build"
 
 [project]
@@ -54,8 +54,8 @@ test = [
 [tool.hatch.build.targets.wheel.shared-data]
 "data_kernelspec" = "share/jupyter/kernels/python3"
 
-[tool.hatch.build]
-artifacts = ["ipykernel_launcher.py"]
+[tool.hatch.build.force-include]
+"./ipykernel_launcher.py" = "ipykernel_launcher.py"
 
 [tool.jupyter-releaser]
 skip = ["check-links"]

>From b743712e07bf5ed2d9c019e3b593eb4cb009d76c Mon Sep 17 00:00:00 2001
From: Steven Silvester 
Date: Fri, 8 Jul 2022 05:36:40 -0500
Subject: [PATCH 2/2] fix workflow syntax

---
 .github/workflows/ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4548c1a8..8464830c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -78,7 +78,8 @@ jobs:
   codecov
 
   - name: Check Launcher
-run: cd $HOME
+run: |
+  cd $HOME
   python -m ipykernel_launcher --help
 
   pre-commit:


commit python-ipykernel for openSUSE:Factory

2022-06-24 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-06-24 08:45:00

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1548 (New)


Package is "python-ipykernel"

Fri Jun 24 08:45:00 2022 rev:23 rq:984609 version:6.15.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-03-20 20:55:17.406504147 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1548/python-ipykernel.changes  
2022-06-24 08:45:09.191128601 +0200
@@ -1,0 +2,97 @@
+Wed Jun 22 21:40:53 UTC 2022 - Ben Greiner 
+
+- Update requirements and test suite setup
+
+---
+Wed Jun 22 13:38:36 UTC 2022 - Arun Persaud 
+
+- specfile:
+  * update requirements
+  * switch to pyproject.toml build
+
+- update to version 6.15.0:
+  * Bugs fixed
++ Fix compatibility with tornado 6.2 beta #956 (@minrk)
+  * Maintenance and upkeep improvements
++ Back to top-level tornado IOLoop #958 (@minrk)
++ Explicitly require pyzmq >= 17 #957 (@minrk)
++ [pre-commit.ci] pre-commit autoupdate #954 (@pre-commit-ci)
+
+- changes from version 6.14.0:
+  * Enhancements made
++ Add cpu_count to the usage_reply #952 (@echarles)
+  * Bugs fixed
++ use pss memory info type if available for the resource usage
+  reply #948 (@echarles)
++ Ensure psutil for the process is accurate #937 (@echarles)
+  * Maintenance and upkeep improvements
++ Fix sphinx 5.0 support #951 (@blink1073)
++ [pre-commit.ci] pre-commit autoupdate #950 (@pre-commit-ci)
+
+- changes from version 6.13.1:
+  * Bugs fixed
++ Fix richInspectVariables #943 (@davidbrochart)
++ Force debugger metadata in built wheel #941 (@blink1073)
+  * Maintenance and upkeep improvements
++ [pre-commit.ci] pre-commit autoupdate #945 (@pre-commit-ci)
++ Clean up typings #939 (@blink1073)
++ [pre-commit.ci] pre-commit autoupdate #938 (@pre-commit-ci)
++ Clean up types #933 (@blink1073)
++ [pre-commit.ci] pre-commit autoupdate #932 (@pre-commit-ci)
++ Switch to hatch backend #931 (@blink1073)
++ [pre-commit.ci] pre-commit autoupdate #928 (@pre-commit-ci)
++ [pre-commit.ci] pre-commit autoupdate #926 (@pre-commit-ci)
++ Allow enforce PR label workflow to add labels #921 (@blink1073)
++ [pre-commit.ci] pre-commit autoupdate #920 (@pre-commit-ci)
++ [pre-commit.ci] pre-commit autoupdate #919 (@pre-commit-ci)
++ [pre-commit.ci] pre-commit autoupdate #917 (@pre-commit-ci)
+
+- changes from version 6.13.0:
+  * Enhancements made
++ Add the PID to the resource usage reply #908 (@echarles)
+  * Bugs fixed
++ Fix qtconsole spawn #915 (@andia89)
+  * Maintenance and upkeep improvements
++ Add basic mypy support #913 (@blink1073)
++ Clean up pre-commit #911 (@blink1073)
++ Update setup.py #909 (@tlinhart)
++ [pre-commit.ci] pre-commit autoupdate #906 (@pre-commit-ci)
+
+- changes from version 6.12.1:
+  * Maintenance and upkeep improvements
++ Clean up test deps and test setup #904 (@blink1073)
+
+- changes from version 6.12.0:
+  * Enhancements made
++ use packaging instead of pkg_resources to parse versions #900
+  (@minrk)
+  * Bugs fixed
++ Make cell_id optional #902 (@blink1073)
++ Do not try to send on iostream if closed #899 (@blink1073)
+
+- changes from version 6.11.0:
+  * Enhancements made
++ Include method signatures in experimental completion results
+  #895 (@MrBago)
++ Try to pass cell id to executing kernel. #886 (@Carreau)
+  * Maintenance and upkeep improvements
++ Handle warnings in tests #896 (@blink1073)
++ Run flake and remove deprecated import #894 (@blink1073)
++ Add ignore-revs file #893 (@blink1073)
++ Autoformat with black and isort #892 (@blink1073)
++ Add pytest opts and pre-commit #889 (@blink1073)
+
+- changes from version 6.10.0:
+  * Enhancements made
++ Improve performance of stderr and stdout stream buffer #888
+  (@MrBago)
+  * Bugs fixed
++ Check if the current thread is the io thread #884 (@jamadeo)
+  * Maintenance and upkeep improvements
++ More CI cleanup #887 (@blink1073)
++ CI cleanup #885 (@blink1073)
+  * Documentation improvements
++ Add precision about subprocess stdout/stderr capturing #883
+  (@lesteve)
+
+---

Old:

  ipykernel-6.9.2.tar.gz

New:

  ipykernel-6.15.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.lfmBsC/_old  2022-06-24 08:45:09.927129425 +0200

commit python-ipykernel for openSUSE:Factory

2022-03-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-03-20 20:55:10

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.25692 (New)


Package is "python-ipykernel"

Sun Mar 20 20:55:10 2022 rev:22 rq:962924 version:6.9.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-02-21 17:45:51.531580789 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.25692/python-ipykernel.changes 
2022-03-20 20:55:17.406504147 +0100
@@ -1,0 +2,20 @@
+Fri Mar 18 18:23:12 UTC 2022 - Ben Greiner 
+
+- Skip the new shutdown test: too flaky for obs
+
+---
+Fri Mar 18 17:19:26 UTC 2022 - Arun Persaud 
+
+- specfile:
+  * require psutil
+
+- update to version 6.9.2:
+  * Bugs fixed
++ Catch error when shutting down kernel from the control channel
+  #877 (@ccordoba12)
++ Only kill children in process group at shutdown #874 (@minrk)
++ BUG: Kill subprocesses on shutdown. #869 (@Carreau)
+  * Maintenance and upkeep improvements
++ Clean up CI #871 (@blink1073)
+
+---

Old:

  ipykernel-6.9.1.tar.gz

New:

  ipykernel-6.9.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.7pUTaW/_old  2022-03-20 20:55:18.206505298 +0100
+++ /var/tmp/diff_new_pack.7pUTaW/_new  2022-03-20 20:55:18.214505309 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.9.1
+Version:6.9.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -37,6 +37,7 @@
 Requires:   python-jupyter-client
 Requires:   python-jupyter-core
 Requires:   python-matplotlib-inline >= 0.1
+Requires:   python-psutil
 Requires:   python-tornado >= 4.2
 Requires:   python-traitlets >= 5.1.0
 Provides:   python-jupyter_ipykernel = %{version}
@@ -59,6 +60,7 @@
 BuildRequires:  %{python_module jupyter-client}
 BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module matplotlib-inline >= 0.1}
+BuildRequires:  %{python_module psutil}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module tornado >= 4.2}
 BuildRequires:  %{python_module traitlets >= 5.1.0}
@@ -99,7 +101,9 @@
 %fdupes  %{buildroot}%{_jupyter_kernel_dir}
 
 %check
-%pytest ipykernel
+# flaky: bad timings in obs often cause this to fail
+donttest="test_shutdown_subprocesses"
+%pytest ipykernel -k "not ($donttest)"
 
 %files %{python_files}
 %doc README.md

++ ipykernel-6.9.1.tar.gz -> ipykernel-6.9.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.9.1/CHANGELOG.md 
new/ipykernel-6.9.2/CHANGELOG.md
--- old/ipykernel-6.9.1/CHANGELOG.md2022-02-15 16:52:14.0 +0100
+++ new/ipykernel-6.9.2/CHANGELOG.md2022-03-14 12:21:01.0 +0100
@@ -2,6 +2,28 @@
 
 
 
+## 6.9.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.9.1...d6744f9e423dacc6b317b1d31805304e89cbec5d))
+
+### Bugs fixed
+
+- Catch error when shutting down kernel from the control channel 
[#877](https://github.com/ipython/ipykernel/pull/877) 
([@ccordoba12](https://github.com/ccordoba12))
+- Only kill children in process group at shutdown 
[#874](https://github.com/ipython/ipykernel/pull/874) 
([@minrk](https://github.com/minrk))
+- BUG: Kill subprocesses on shutdown. 
[#869](https://github.com/ipython/ipykernel/pull/869) 
([@Carreau](https://github.com/Carreau))
+
+### Maintenance and upkeep improvements
+
+- Clean up CI [#871](https://github.com/ipython/ipykernel/pull/871) 
([@blink1073](https://github.com/blink1073))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-02-15=2022-03-14=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-02-15..2022-03-14=Issues)
 | 
[@Carreau](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3ACarreau+updated%3A2022-02-15..2022-03-14=Issues)
 | 
[@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2022-02-15..2022-03-14=Issues)
 | 
[@echarles](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aecharles+updated%3A2022-02-15..2022-03-14=Issues)
 | 

commit python-ipykernel for openSUSE:Factory

2022-02-21 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-02-21 17:45:46

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1958 (New)


Package is "python-ipykernel"

Mon Feb 21 17:45:46 2022 rev:21 rq:955752 version:6.9.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-02-11 23:08:14.362744120 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1958/python-ipykernel.changes  
2022-02-21 17:45:51.531580789 +0100
@@ -1,0 +2,9 @@
+Thu Feb 17 16:33:02 UTC 2022 - Arun Persaud 
+
+- update to version 6.9.1:
+  * Bugs fixed
++ Add hostname to the usage reply #865 (@echarles)
++ Enable standard library debugging via config #863 (@echarles)
++ process_one only accepts coroutines for dispatch #861 (@minrk)
+
+---

Old:

  ipykernel-6.9.0.tar.gz

New:

  ipykernel-6.9.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.dyXspK/_old  2022-02-21 17:45:52.975581219 +0100
+++ /var/tmp/diff_new_pack.dyXspK/_new  2022-02-21 17:45:52.979581221 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.9.0
+Version:6.9.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-6.9.0.tar.gz -> ipykernel-6.9.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.9.0/CHANGELOG.md 
new/ipykernel-6.9.1/CHANGELOG.md
--- old/ipykernel-6.9.0/CHANGELOG.md2022-02-07 18:18:56.0 +0100
+++ new/ipykernel-6.9.1/CHANGELOG.md2022-02-15 16:52:14.0 +0100
@@ -2,6 +2,24 @@
 
 
 
+## 6.9.1
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.9.0...c27e5b95c3d104d9fb6cae3375aec0e98974dcff))
+
+### Bugs fixed
+
+- Add hostname to the usage reply 
[#865](https://github.com/ipython/ipykernel/pull/865) 
([@echarles](https://github.com/echarles))
+- Enable standard library debugging via config 
[#863](https://github.com/ipython/ipykernel/pull/863) 
([@echarles](https://github.com/echarles))
+- process_one only accepts coroutines for dispatch 
[#861](https://github.com/ipython/ipykernel/pull/861) 
([@minrk](https://github.com/minrk))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-02-07=2022-02-15=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-02-07..2022-02-15=Issues)
 | 
[@echarles](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aecharles+updated%3A2022-02-07..2022-02-15=Issues)
 | 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2022-02-07..2022-02-15=Issues)
+
+
+
 ## 6.9.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.8.0...7a229c6c83d44d315f637ef63159a43c64ec73d6))
@@ -17,8 +35,6 @@
 
 
[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-02-01..2022-02-07=Issues)
 | 
[@JohanMabille](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3AJohanMabille+updated%3A2022-02-01..2022-02-07=Issues)
 | 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2022-02-01..2022-02-07=Issues)
 
-
-
 ## 6.8.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.7.0...4e775b70e7e1be7e96fe7c3c747f21f3d93f0181))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.9.0/PKG-INFO new/ipykernel-6.9.1/PKG-INFO
--- old/ipykernel-6.9.0/PKG-INFO2022-02-07 18:19:33.637899900 +0100
+++ new/ipykernel-6.9.1/PKG-INFO2022-02-15 16:52:53.615234000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 6.9.0
+Version: 6.9.1
 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-6.9.0/ipykernel/_version.py 
new/ipykernel-6.9.1/ipykernel/_version.py
--- old/ipykernel-6.9.0/ipykernel/_version.py   2022-02-07 18:19:15.0 
+0100
+++ new/ipykernel-6.9.1/ipykernel/_version.py   2022-02-15 16:52:35.0 
+0100
@@ -4,7 +4,7 @@
 import re
 
 # Version string must appear intact for tbump versioning
-__version__ = '6.9.0'

commit python-ipykernel for openSUSE:Factory

2022-02-11 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-02-11 23:07:08

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1956 (New)


Package is "python-ipykernel"

Fri Feb 11 23:07:08 2022 rev:20 rq:953119 version:6.9.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2022-01-17 22:33:49.946235250 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1956/python-ipykernel.changes  
2022-02-11 23:08:14.362744120 +0100
@@ -1,0 +2,19 @@
+Thu Feb 10 05:16:05 UTC 2022 - Arun Persaud 
+
+- update to version 6.9.0:
+  * Bugs fixed
++ Fixed event forwarding #855 (@JohanMabille)
++ use message queue for abort_queues #853 (@minrk)
+
+- changes from version 6.8.0:
+  * Enhancements made
++ Add support for the debug modules request #816 (@echarles)
+  * Bugs fixed
++ Handle all threads stopped correctly #849 (@JohanMabille)
++ Fix the debug modules model #848 (@echarles)
++ Handled AllThreadsContinued and workaround for wrong threadId in
+  cont??? #844 (@JohanMabille)
+  * Maintenance and upkeep improvements
++ Cancel duplicate runs #850 (@blink1073)
+
+---

Old:

  ipykernel-6.7.0.tar.gz

New:

  ipykernel-6.9.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.AvHuQM/_old  2022-02-11 23:08:15.030745975 +0100
+++ /var/tmp/diff_new_pack.AvHuQM/_new  2022-02-11 23:08:15.034745987 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:6.7.0
+Version:6.9.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -86,7 +86,7 @@
 %if 0%{?suse_version} >= 1550
 # use the symlink for the default python3 flavor, which was installed during 
the install but used python3.X name
 # from the primary flavor.
-sed -i "s|$(readlink -f %{__python3})|%{__python3}|" 
%{buildroot}%{_jupyter_kernel_dir}/python3/kernel.json
+sed -i "s|$(readlink -f python3)|python3|" 
%{buildroot}%{_jupyter_kernel_dir}/python3/kernel.json
 %{python_expand # install kernelspecs for each flavor
 PYTHONPATH=%{buildroot}%{$python_sitelib}
 $python -m ipykernel install \

++ ipykernel-6.7.0.tar.gz -> ipykernel-6.9.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.7.0/CHANGELOG.md 
new/ipykernel-6.9.0/CHANGELOG.md
--- old/ipykernel-6.7.0/CHANGELOG.md2022-01-13 16:18:27.0 +0100
+++ new/ipykernel-6.9.0/CHANGELOG.md2022-02-07 18:18:56.0 +0100
@@ -2,6 +2,47 @@
 
 
 
+## 6.9.0
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.8.0...7a229c6c83d44d315f637ef63159a43c64ec73d6))
+
+### Bugs fixed
+
+- Fixed event forwarding [#855](https://github.com/ipython/ipykernel/pull/855) 
([@JohanMabille](https://github.com/JohanMabille))
+- use message queue for abort_queues 
[#853](https://github.com/ipython/ipykernel/pull/853) 
([@minrk](https://github.com/minrk))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2022-02-01=2022-02-07=c))
+
+[@blink1073](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Ablink1073+updated%3A2022-02-01..2022-02-07=Issues)
 | 
[@JohanMabille](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3AJohanMabille+updated%3A2022-02-01..2022-02-07=Issues)
 | 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2022-02-01..2022-02-07=Issues)
+
+
+
+## 6.8.0
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.7.0...4e775b70e7e1be7e96fe7c3c747f21f3d93f0181))
+
+### Enhancements made
+
+- Add support for the debug modules request 
[#816](https://github.com/ipython/ipykernel/pull/816) 
([@echarles](https://github.com/echarles))
+
+### Bugs fixed
+
+- Handle all threads stopped correctly 
[#849](https://github.com/ipython/ipykernel/pull/849) 
([@JohanMabille](https://github.com/JohanMabille))
+- Fix the debug modules model 
[#848](https://github.com/ipython/ipykernel/pull/848) 
([@echarles](https://github.com/echarles))
+- Handled AllThreadsContinued and workaround for wrong threadId in cont??? 
[#844](https://github.com/ipython/ipykernel/pull/844) 
([@JohanMabille](https://github.com/JohanMabille))
+
+### Maintenance and upkeep improvements
+
+- Cancel duplicate runs 

commit python-ipykernel for openSUSE:Factory

2022-01-17 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2022-01-17 22:33:48

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1892 (New)


Package is "python-ipykernel"

Mon Jan 17 22:33:48 2022 rev:19 rq:946634 version:6.7.0

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-12-25 20:16:31.717243890 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1892/python-ipykernel.changes  
2022-01-17 22:33:49.946235250 +0100
@@ -1,0 +2,28 @@
+Sat Jan 15 14:59:15 UTC 2022 - Ben Greiner 
+
+- Cleanup specfile
+- Update dependency declarations
+
+---
+Fri Jan 14 17:29:31 UTC 2022 - Matej Cepl 
+
+- Update to 6.7.0:
+  - PR: do_one_iteration is a coroutine
+  - Clean python 2 artifacts. Fix
+  - Fix title position in changelog
+  - Set debugOptions for breakpoints in python standard library
+source
+  - Send omit_sections to IPython to choose which sections of
+documentation you do not want
+  - Added missing exceptionPaths field to debugInfo reply
+  - Test jupyter_kernel_test as downstream
+  - Remove nose dependency
+  - Add explicit encoding to open calls in debugger
+  - Fix the temp file name created by the debugger
+  - Enforce labels on PRs
+  - Unpin IPython, and remove some dependencies on it.
+  - Fix rich variables inspection
+  - Do not call setQuitOnLastWindowClosed() on a QCoreApplication
+  - Drop ipython_genutils requirement
+
+---

Old:

  ipykernel-6.4.2.tar.gz

New:

  ipykernel-6.7.0.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.x2EFv6/_old  2022-01-17 22:33:50.482235605 +0100
+++ /var/tmp/diff_new_pack.x2EFv6/_new  2022-01-17 22:33:50.486235607 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ipykernel
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,12 +16,10 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%{?!python_module:%define python_module() python3-%{**}}
 %define skip_python2 1
-%define skip_python36 1
 Name:   python-ipykernel
-# Note: Don't update to > 6.4 until you can update traitlets 4, which is 
required for python36
-Version:6.4.2
+Version:6.7.0
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -36,12 +34,11 @@
 Requires:   jupyter-jupyter-client
 Requires:   python-debugpy >= 1.0
 Requires:   python-ipython >= 7.23.1
-Requires:   python-ipython_genutils
 Requires:   python-jupyter-client
 Requires:   python-jupyter-core
 Requires:   python-matplotlib-inline >= 0.1
 Requires:   python-tornado >= 4.2
-Requires:   python-traitlets >= 4.1.0
+Requires:   python-traitlets >= 5.1.0
 Provides:   python-jupyter_ipykernel = %{version}
 Obsoletes:  python-jupyter_ipykernel < %{version}
 Provides:   %{python_module ipykernel-doc = %{version}}
@@ -59,15 +56,12 @@
 BuildRequires:  %{python_module debugpy >= 1.0.0}
 BuildRequires:  %{python_module flaky}
 BuildRequires:  %{python_module ipython >= 7.23.1}
-BuildRequires:  %{python_module ipython_genutils}
 BuildRequires:  %{python_module jupyter-client}
 BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module matplotlib-inline >= 0.1}
-# still using nose streams from ipython, but they are working on a removal
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module tornado >= 4.2}
-BuildRequires:  %{python_module traitlets >= 4.1.0}
+BuildRequires:  %{python_module traitlets >= 5.1.0}
 # /SECTION
 # typing is only built-in for later versions of python
 %if 0%{?suse_version} <= 1320
@@ -105,7 +99,7 @@
 %fdupes  %{buildroot}%{_jupyter_kernel_dir}
 
 %check
-%pytest -ra
+%pytest ipykernel
 
 %files %{python_files}
 %doc README.md

++ ipykernel-6.4.2.tar.gz -> ipykernel-6.7.0.tar.gz ++
 2022 lines of diff (skipped)


commit python-ipykernel for openSUSE:Factory

2021-12-25 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-12-25 20:16:27

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2520 (New)


Package is "python-ipykernel"

Sat Dec 25 20:16:27 2021 rev:18 rq:941537 version:6.4.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-09-26 21:48:59.574799535 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2520/python-ipykernel.changes  
2021-12-25 20:16:31.717243890 +0100
@@ -1,0 +2,10 @@
+Sun Dec 19 19:59:00 UTC 2021 - Ben Greiner 
+
+- Update to 6.4.2
+  * Enabled rich rendering of variables in the debugger #787
+(@JohanMabille)
+  * Remove setting of the eventloop function in the InProcessKernel
+#781 (@rayosborn)
+  * Add python version classifiers #783 (@emuccino)
+
+---

Old:

  ipykernel-6.4.1.tar.gz

New:

  ipykernel-6.4.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.QCyC9h/_old  2021-12-25 20:16:33.225245118 +0100
+++ /var/tmp/diff_new_pack.QCyC9h/_new  2021-12-25 20:16:33.225245118 +0100
@@ -20,7 +20,8 @@
 %define skip_python2 1
 %define skip_python36 1
 Name:   python-ipykernel
-Version:6.4.1
+# Note: Don't update to > 6.4 until you can update traitlets 4, which is 
required for python36
+Version:6.4.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -30,10 +31,8 @@
 BuildRequires:  %{python_module base >= 3.7}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  jupyter-jupyter_core-filesystem
 BuildRequires:  python-rpm-macros
-Requires:   hicolor-icon-theme
 Requires:   jupyter-jupyter-client
 Requires:   python-debugpy >= 1.0
 Requires:   python-ipython >= 7.23.1

++ ipykernel-6.4.1.tar.gz -> ipykernel-6.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.4.1/CHANGELOG.md 
new/ipykernel-6.4.2/CHANGELOG.md
--- old/ipykernel-6.4.1/CHANGELOG.md2021-09-10 15:06:28.0 +0200
+++ new/ipykernel-6.4.2/CHANGELOG.md2021-10-20 03:14:39.0 +0200
@@ -4,6 +4,30 @@
 
 
 
+## 6.4.2
+
+([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.4.1...231fd3c65f8a15e9e015546c0a6846e22df9ba2a))
+
+### Enhancements made
+
+- Enabled rich rendering of variables in the debugger 
[#787](https://github.com/ipython/ipykernel/pull/787) 
([@JohanMabille](https://github.com/JohanMabille))
+
+### Bugs fixed
+
+- Remove setting of the eventloop function in the InProcessKernel 
[#781](https://github.com/ipython/ipykernel/pull/781) 
([@rayosborn](https://github.com/rayosborn))
+
+### Maintenance and upkeep improvements
+
+- Add python version classifiers 
[#783](https://github.com/ipython/ipykernel/pull/783) 
([@emuccino](https://github.com/emuccino))
+
+### Contributors to this release
+
+([GitHub contributors page for this 
release](https://github.com/ipython/ipykernel/graphs/contributors?from=2021-09-10=2021-10-19=c))
+
+[@emuccino](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aemuccino+updated%3A2021-09-10..2021-10-19=Issues)
 | 
[@JohanMabille](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3AJohanMabille+updated%3A2021-09-10..2021-10-19=Issues)
 | 
[@rayosborn](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Arayosborn+updated%3A2021-09-10..2021-10-19=Issues)
+
+
+
 ## 6.4.1
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.4.0...4da7623c1ae733f32c0792d70e7af283a7b19d22))
@@ -18,8 +42,6 @@
 
 
[@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2021-09-09..2021-09-10=Issues)
 
-
-
 ## 6.4.0
 
 ([Full 
Changelog](https://github.com/ipython/ipykernel/compare/v6.3.1...1ba6b48a97877ff7a564af32c531618efb7d2a57))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.4.1/PKG-INFO new/ipykernel-6.4.2/PKG-INFO
--- old/ipykernel-6.4.1/PKG-INFO2021-09-10 15:06:58.263110400 +0200
+++ new/ipykernel-6.4.2/PKG-INFO2021-10-20 03:15:16.932088600 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 6.4.1
+Version: 6.4.2
 Summary: IPython Kernel for Jupyter
 Home-page: https://ipython.org
 Author: IPython Development Team
@@ -16,6 +16,9 @@
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Programming Language :: Python
 

commit python-ipykernel for openSUSE:Factory

2021-09-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-09-26 21:48:21

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1899 (New)


Package is "python-ipykernel"

Sun Sep 26 21:48:21 2021 rev:17 rq:921010 version:6.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-09-11 22:24:34.099388845 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1899/python-ipykernel.changes  
2021-09-26 21:48:59.574799535 +0200
@@ -1,0 +2,36 @@
+Wed Sep 22 15:23:38 UTC 2021 - Matej Cepl 
+
+- Deduplicate files in _jupyter_kernel_dir.
+
+---
+Wed Sep 22 15:15:06 UTC 2021 - Ben Greiner 
+
+- Revert and clarify some specfile changes:
+  * fix kernelspec install for primary flavor
+  * BuildRequires debugpy is sufficiently declared once
+
+---
+Wed Sep 15 05:29:16 UTC 2021 - Arun Persaud 
+
+- specfile:
+  * require debugpy for build
+
+- update to version 6.4.1:
+  * Merged PRs
++ debugpy is now a build requirement #773 (@minrk)
+
+- changes from version 6.4.0:
+  * Enhancements made
++ Make json_clean a no-op for jupyter-client >= 7 #708
+  (@martinRenou)
+  * Bugs fixed
++ Do not assume kernels have loops #766 (@Carreau)
++ Fix undefined variable #765 (@martinRenou)
+  * Maintenance and upkeep improvements
++ Make ipykernel work without debugpy #767 (@frenzymadness)
++ Stop using deprecated recv_multipart when using in-process
+  socket. #762 (@Carreau)
++ Update some warnings with instructions and version number. #761
+  (@Carreau)
+
+---

Old:

  ipykernel-6.3.1.tar.gz

New:

  ipykernel-6.4.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.8MeC04/_old  2021-09-26 21:49:00.074800092 +0200
+++ /var/tmp/diff_new_pack.8MeC04/_new  2021-09-26 21:49:00.078800096 +0200
@@ -20,7 +20,7 @@
 %define skip_python2 1
 %define skip_python36 1
 Name:   python-ipykernel
-Version:6.3.1
+Version:6.4.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -51,11 +51,11 @@
 Obsoletes:  %{python_module jupyter_ipykernel-doc < %{version}}
 Provides:   %{python_module jupyter-ipykernel-doc = %{version}}
 Obsoletes:  %{python_module jupyter-ipykernel-doc < %{version}}
+BuildArch:  noarch
 %if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
 Provides:   jupyter-ipykernel = %{version}-%{release}
 Obsoletes:  jupyter-ipykernel < %{version}-%{release}
 %endif
-BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module debugpy >= 1.0.0}
 BuildRequires:  %{python_module flaky}
@@ -90,7 +90,10 @@
 
 %install
 %python_install
-%if %suse_version >= 1550
+%if 0%{?suse_version} >= 1550
+# use the symlink for the default python3 flavor, which was installed during 
the install but used python3.X name
+# from the primary flavor.
+sed -i "s|$(readlink -f %{__python3})|%{__python3}|" 
%{buildroot}%{_jupyter_kernel_dir}/python3/kernel.json
 %{python_expand # install kernelspecs for each flavor
 PYTHONPATH=%{buildroot}%{$python_sitelib}
 $python -m ipykernel install \
@@ -98,10 +101,9 @@
 --name python%{$python_bin_suffix} \
 --display-name 'Python %{$python_bin_suffix} (ipykernel)'
 }
-# use the symlink for the default python3 flavor
-sed -i "s|$(readlink -f %{__python3})|%{__python3}|" 
%{buildroot}%{_jupyter_kernel_dir}/python3/kernel.json
 %endif
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
+%fdupes  %{buildroot}%{_jupyter_kernel_dir}
 
 %check
 %pytest -ra
@@ -113,7 +115,7 @@
 %{python_sitelib}/ipykernel_launcher.py
 %{python_sitelib}/ipykernel-%{version}-py*.egg-info
 %pycache_only %{python_sitelib}/__pycache__/*.pyc
-%if %suse_version >= 1550
+%if 0%{?suse_version} >= 1550
 %{_jupyter_kernel_dir}/python%{python_bin_suffix}
 %endif
 %if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"

++ ipykernel-6.3.1.tar.gz -> ipykernel-6.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-6.3.1/CHANGELOG.md 
new/ipykernel-6.4.1/CHANGELOG.md
--- old/ipykernel-6.3.1/CHANGELOG.md2021-08-31 03:29:46.0 +0200
+++ new/ipykernel-6.4.1/CHANGELOG.md2021-09-10 15:06:28.0 +0200
@@ -4,6 +4,47 @@
 
 
 
+## 6.4.1
+
+([Full 

commit python-ipykernel for openSUSE:Factory

2021-09-11 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-09-11 22:24:20

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1899 (New)


Package is "python-ipykernel"

Sat Sep 11 22:24:20 2021 rev:16 rq:917665 version:6.3.1

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-08-16 10:12:58.095001196 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1899/python-ipykernel.changes  
2021-09-11 22:24:34.099388845 +0200
@@ -1,0 +2,21 @@
+Mon Sep  6 11:20:30 UTC 2021 - Ben Greiner 
+
+- Update to version 6.3.1
+  * Add dependency on IPython genutils gh#ipython/ipykernel#756
+
+---
+Mon Aug 30 19:28:52 UTC 2021 - Ben Greiner 
+
+- Update to version 6.3.0
+  * Add deep variable inspection #753 (@JohanMabille)
+  * Add IPKernelApp.capture_fd_output config to disable FD-level
+capture #752 (@minrk)
+  * Remove a lot of nose stuff
+- Release 6.2.0
+  * Add Support for Message Based Interrupt #741 (@afshin)
+- Release 6.1.0
+  * Implemented richInspectVariable request handler #734
+(@JohanMabille)
+  * Fix exception raised by OutStream.write #726 (@SimonKrughoff)
+
+---

Old:

  ipykernel-6.0.3.tar.gz

New:

  ipykernel-6.3.1.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.6Rv1BK/_old  2021-09-11 22:24:34.619389358 +0200
+++ /var/tmp/diff_new_pack.6Rv1BK/_new  2021-09-11 22:24:34.619389358 +0200
@@ -20,7 +20,7 @@
 %define skip_python2 1
 %define skip_python36 1
 Name:   python-ipykernel
-Version:6.0.3
+Version:6.3.1
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -37,13 +37,12 @@
 Requires:   jupyter-jupyter-client
 Requires:   python-debugpy >= 1.0
 Requires:   python-ipython >= 7.23.1
+Requires:   python-ipython_genutils
 Requires:   python-jupyter-client
 Requires:   python-jupyter-core
+Requires:   python-matplotlib-inline >= 0.1
 Requires:   python-tornado >= 4.2
 Requires:   python-traitlets >= 4.1.0
-%if 0%{?python_version_nodots} < 38
-Requires:   python-importlib-metadata
-%endif
 Provides:   python-jupyter_ipykernel = %{version}
 Obsoletes:  python-jupyter_ipykernel < %{version}
 Provides:   %{python_module ipykernel-doc = %{version}}
@@ -58,14 +57,14 @@
 %endif
 BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module importlib-metadata if %python-base < 3.8}
 BuildRequires:  %{python_module debugpy >= 1.0.0}
 BuildRequires:  %{python_module flaky}
 BuildRequires:  %{python_module ipython >= 7.23.1}
+BuildRequires:  %{python_module ipython_genutils}
 BuildRequires:  %{python_module jupyter-client}
 BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module matplotlib-inline >= 0.1}
-BuildRequires:  %{python_module nose_warnings_filters}
+# still using nose streams from ipython, but they are working on a removal
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module tornado >= 4.2}

++ ipykernel-6.0.3.tar.gz -> ipykernel-6.3.1.tar.gz ++
 1885 lines of diff (skipped)


commit python-ipykernel for openSUSE:Factory

2021-08-16 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-08-16 10:08:30

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.1899 (New)


Package is "python-ipykernel"

Mon Aug 16 10:08:30 2021 rev:15 rq:910272 version:6.0.3

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-07-02 13:26:43.057109493 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.1899/python-ipykernel.changes  
2021-08-16 10:12:58.095001196 +0200
@@ -1,0 +2,80 @@
+Wed Jul 28 12:08:06 UTC 2021 - Mark??ta Machov?? 
+
+- Skip pickle tests to get rid of ipyparallel dependency which we 
+  don't want in Ring1 stagings
+
+---
+Fri Jul 23 08:22:28 UTC 2021 - Ben Greiner 
+
+- Update to version 6.0.3 
+  * KernelApp: rename ports variable to avoid override #731
+(@amorenoz)
+- Release version 6.0.2
+  * Add watchfd keyword to InProcessKernel OutStream initialization
+#727 (@rayosborn)
+  * Fix typo in eventloops.py #711 (@selasley)
+  * [bugfix] fix in setup.py (comma before appnope) #709
+(@jstriebel)
+  * Add upper bound to dependency versions. #714 (@martinRenou)
+  * Replace non-existing function. #723 (@Carreau)
+  * Remove unused variables #722 (@Carreau)
+  * Do not use bare except #721 (@Carreau)
+  * misc whitespace and line too long #720 (@Carreau)
+  * Formatting: remove semicolon #719 (@Carreau)
+  * Clean most flake8 unused import warnings. #718 (@Carreau)
+  * Minimal flake8 config #717 (@Carreau)
+  * Remove CachingCompiler's filename_mapper #710 (@martinRenou)
+- Release version 6.0.1
+  * Fix Tk and asyncio event loops #704 (@ccordoba12)
+  * Stringify variables that are not json serializable in
+inspectVariable #702 (@JohanMabille)
+- Install kernelspecs for each flavor. Remove common
+  jupyter-ipykernel package
+
+---
+Thu Jul  1 17:17:26 UTC 2021 - Ben Greiner 
+
+- Update to version 6.0.0
+  IPykernel 6.0 is the first major release in about two years,
+  that brings a number of improvements, code cleanup, and new
+  features to IPython.
+  IPykernel 6 should contain all changes of the 5.x series, in
+  addition to the following non-exhaustive changes:
+  * Support for the debugger protocol, when using JupyterLab,
+RetroLab or any frontend supporting the debugger protocol you
+should have access to the debugger functionalities.
+  * The control channel on IPykernel 6.0 is run in a separate
+thread, this max change the order in which messages are
+processed, though this change was necessary to accommodate
+the debugger.
+  * We now have a new dependency: matplotlib-inline, this helps
+to separate the circular dependency between IPython/IPykernel
+and matplotlib.
+  * All outputs to stdout/stderr should now be captured,
+including subprocesses and output of compiled libraries
+(blas, lapack). In notebook server, some outputs that
+would previously go to the notebooks logs will now
+both head to notebook logs and in notebooks outputs. In
+terminal frontend like Jupyter Console, Emacs or other, this
+may ends up as duplicated outputs.
+  * coroutines are now native (async-def) , instead of using
+tornado's @gen.coroutine
+  * OutStreams can now be configured to report istty() == True,
+while this should make some output nicer (for example colored),
+it is likely to break others. Use with care.
+  Deprecations in 6.0
+  * Kernels now support only a single shell stream, multiple
+streams will now be ignored. The attribute
+  * Kernel.shell_streams (plural) is deprecated in ipykernel 6.0.
+Use Kernel.shell_stream (singular)
+  * Kernel._parent_header is deprecated, even though it was
+private. Use .get_parent() now.
+  Removal in 6.0
+  * ipykernel.codeutils was deprecated since 4.x series (2016) and
+has been removed, please import similar functionalities from
+ipyparallel
+  * remove find_connection_file and profile argument of
+connect_qtconsole and get_connection_info, deprecated since
+IPykernel 4.2.2 (2016).
+
+---

Old:

  ipykernel-5.5.5.tar.gz

New:

  ipykernel-6.0.3.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.ayIIXb/_old  2021-08-16 10:12:58.503000716 +0200
+++ /var/tmp/diff_new_pack.ayIIXb/_new  2021-08-16 10:12:58.507000712 +0200
@@ -18,25 +18,32 @@
 
 %{?!python_module:%define python_module() 

commit python-ipykernel for openSUSE:Factory

2021-07-02 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-07-02 13:26:29

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2625 (New)


Package is "python-ipykernel"

Fri Jul  2 13:26:29 2021 rev:14 rq:902823 version:5.5.5

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-02-16 22:34:32.441501308 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2625/python-ipykernel.changes  
2021-07-02 13:26:43.057109493 +0200
@@ -1,0 +2,20 @@
+Fri Jun 25 12:08:31 UTC 2021 - Ben Greiner 
+
+- Update to version 5.5.5
+  * Keep preferring SelectorEventLoop on Windows. #669
+- Release 5.5.4
+  * Import configure_inline_support from matplotlib_inline if
+available #654
+- Release 5.5.3
+  * Revert Backport of #605: Fix Handling of shell.should_run_async
+#622
+- Release 5.5.2 and Release 5.5.1 were yanked from PyPI
+- Release 5.5.0
+  * kernelspec: ensure path is writable before writing kernel.json.
+#593
+  * Add configure_inline_support and call it in the shell. #590
+  * Fix stop_on_error_timeout to now properly abort
+execute_request's that fall within the timeout after an error.
+#572
+
+---

Old:

  ipykernel-5.4.3.tar.gz

New:

  ipykernel-5.5.5.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.NjBURs/_old  2021-07-02 13:26:43.625105086 +0200
+++ /var/tmp/diff_new_pack.NjBURs/_new  2021-07-02 13:26:43.625105086 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:5.4.3
+Version:5.5.5
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-5.4.3.tar.gz -> ipykernel-5.5.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-5.4.3/CONTRIBUTING.md 
new/ipykernel-5.5.5/CONTRIBUTING.md
--- old/ipykernel-5.4.3/CONTRIBUTING.md 2021-01-11 17:29:53.0 +0100
+++ new/ipykernel-5.5.5/CONTRIBUTING.md 2021-03-29 17:39:43.0 +0200
@@ -2,7 +2,7 @@
 
 Welcome!
 
-For contributing tips, follow the [Jupyter Contributing 
Guide](https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html).
+For contributing tips, follow the [Jupyter Contributing 
Guide](https://jupyter.readthedocs.io/en/latest/contributing/content-contributor.html).
 Please make sure to follow the [Jupyter Code of 
Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md).
 
 ## Installing ipykernel for development
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-5.4.3/PKG-INFO new/ipykernel-5.5.5/PKG-INFO
--- old/ipykernel-5.4.3/PKG-INFO2021-01-11 18:10:35.339956000 +0100
+++ new/ipykernel-5.5.5/PKG-INFO2021-05-13 13:33:06.516668000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 5.4.3
+Version: 5.5.5
 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.4.3/docs/changelog.rst 
new/ipykernel-5.5.5/docs/changelog.rst
--- old/ipykernel-5.4.3/docs/changelog.rst  2021-01-11 18:09:17.0 
+0100
+++ new/ipykernel-5.5.5/docs/changelog.rst  2021-05-13 13:32:28.0 
+0200
@@ -1,6 +1,38 @@
 Changes in IPython kernel
 =
 
+5.5
+---
+
+5.5.5
+-
+- Keep preferring SelectorEventLoop on Windows. (:ghpull:`669`)
+
+5.5.4
+-
+- Import ``configure_inline_support`` from ``matplotlib_inline`` if available 
(:ghpull:`654`)
+   
+5.5.3
+-
+- Revert Backport of #605: Fix Handling of ``shell.should_run_async`` 
(:ghpull:`622`)
+
+5.5.2
+-
+**Note:** This release was deleted from PyPI since it had breaking changes.
+
+- Changed default timeout to 0.0 seconds for stop_on_error_timeout. 
(:ghpull:`618`)
+
+5.5.1
+-
+**Note:** This release was deleted from PyPI since it had breaking changes.
+
+- Fix Handling of ``shell.should_run_async``. (:ghpull:`605`)
+
+5.5.0
+-
+- Kernelspec: ensure path is writable before writing ``kernel.json``. 
(:ghpull:`593`)
+- Add ``configure_inline_support`` and call it in the shell. (:ghpull:`590`)
+
 5.4
 ---
 
@@ -23,7 +55,7 @@
 
 - Add github actions, bail on asyncio patch for tornado 6.1.  (:ghpull:`564`)
 - Start testing on Python 3.9.  

commit python-ipykernel for openSUSE:Factory

2021-02-16 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-02-16 22:34:27

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.28504 (New)


Package is "python-ipykernel"

Tue Feb 16 22:34:27 2021 rev:13 rq:872448 version:5.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2021-02-04 20:24:13.602840195 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.28504/python-ipykernel.changes 
2021-02-16 22:34:32.441501308 +0100
@@ -1,0 +2,9 @@
+Sat Feb 13 23:21:18 UTC 2021 - Ben Greiner 
+
+- Update to version 5.4.3
+  * Rework wait_for_ready logic.
+- Don't test with python36-numpy because it is no more (NEP 29)
+- Skip two completion tests due to newer jedi support in ipython
+  gh#ipython/ipykernel#578 gh#ipython/ipykernel#579
+
+---

Old:

  ipykernel-5.4.2.tar.gz

New:

  ipykernel-5.4.3.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.XhnKTl/_old  2021-02-16 22:34:32.997502070 +0100
+++ /var/tmp/diff_new_pack.XhnKTl/_new  2021-02-16 22:34:33.001502075 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ipykernel
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:5.4.2
+Version:5.4.3
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause
@@ -27,9 +27,9 @@
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
-BuildRequires:  jupyter-jupyter_core-filesystem
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  jupyter-jupyter_core-filesystem
 BuildRequires:  python-rpm-macros
 Requires:   jupyter-ipykernel = %{version}
 Requires:   python-ipython >= 5.0.0
@@ -53,10 +53,11 @@
 BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module nose_warnings_filters}
 BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module numpy}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module tornado >= 4.2}
 BuildRequires:  %{python_module traitlets >= 4.1.0}
+BuildRequires:  %{python_module matplotlib if (%python-base without 
python36-base)}
+BuildRequires:  %{python_module numpy if (%python-base without python36-base)}
 # /SECTION
 # typing is only built-in for later versions of python
 %if 0%{?suse_version} <= 1320
@@ -94,7 +95,9 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%pytest
+# These tests expect jedi 0.17.2 return messages, but we use patches to 
support jedi 0.18 in ipython715
+# and ipython 7.20 fixed its support for jedi 0.18 gh#ipython/ipykernel#578 
gh#ipython/ipykernel#579
+%pytest -ra -k "not (test_complete or test_inspect)"
 
 %files %{python_files}
 %doc README.md docs/changelog.rst

++ ipykernel-5.4.2.tar.gz -> ipykernel-5.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-5.4.2/PKG-INFO new/ipykernel-5.4.3/PKG-INFO
--- old/ipykernel-5.4.2/PKG-INFO2020-12-11 23:22:33.376145400 +0100
+++ new/ipykernel-5.4.3/PKG-INFO2021-01-11 18:10:35.339956000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: ipykernel
-Version: 5.4.2
+Version: 5.4.3
 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.4.2/docs/changelog.rst 
new/ipykernel-5.4.3/docs/changelog.rst
--- old/ipykernel-5.4.2/docs/changelog.rst  2020-12-11 23:21:57.0 
+0100
+++ new/ipykernel-5.4.3/docs/changelog.rst  2021-01-11 18:09:17.0 
+0100
@@ -4,6 +4,10 @@
 5.4
 ---
 
+5.4.3
+*
+- Rework wait_for_ready logic. (:ghpull:`578`)
+
 5.4.2
 *
 - Revert "Fix stop_on_error_timeout blocking other messages in queue".  
(:ghpull:`570`)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipykernel-5.4.2/ipykernel/_version.py 
new/ipykernel-5.4.3/ipykernel/_version.py
--- old/ipykernel-5.4.2/ipykernel/_version.py   2020-12-11 23:21:57.0 

commit python-ipykernel for openSUSE:Factory

2021-02-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2021-02-04 20:23:31

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.28504 (New)


Package is "python-ipykernel"

Thu Feb  4 20:23:31 2021 rev:12 rq:869202 version:5.4.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2020-12-16 11:00:21.507562288 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.28504/python-ipykernel.changes 
2021-02-04 20:24:13.602840195 +0100
@@ -1,0 +2,5 @@
+Wed Feb  3 22:39:49 UTC 2021 - Benjamin Greiner 
+
+- BuildRequire jupyter-jupyter_core-filesystem for the macro
+
+---



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.cCFrLm/_old  2021-02-04 20:24:14.162841048 +0100
+++ /var/tmp/diff_new_pack.cCFrLm/_new  2021-02-04 20:24:14.166841054 +0100
@@ -27,6 +27,7 @@
 URL:https://github.com/ipython/ipykernel
 Source: 
https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  jupyter-jupyter_core-filesystem
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  python-rpm-macros


commit python-ipykernel for openSUSE:Factory

2020-12-16 Thread User for buildservice source handling
Hello community,

here is the log from the commit of package python-ipykernel for 
openSUSE:Factory checked in at 2020-12-16 11:00:18

Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old)
 and  /work/SRC/openSUSE:Factory/.python-ipykernel.new.2328 (New)


Package is "python-ipykernel"

Wed Dec 16 11:00:18 2020 rev:11 rq:856012 version:5.4.2

Changes:

--- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes
2020-08-01 12:30:48.054435627 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-ipykernel.new.2328/python-ipykernel.changes  
2020-12-16 11:00:21.507562288 +0100
@@ -1,0 +2,20 @@
+Mon Dec 14 22:47:01 UTC 2020 - Benjamin Greiner 
+
+- update to version 5.4.2
+  * Revert "Fix stop_on_error_timeout blocking other messages in
+queue" 
+- changes in 5.4.1
+  * Invalid syntax in ipykernel/log.py.
+- changes in 5.4.0
+  5.4.0 is generally focused on code quality improvements and
+  tornado asyncio compatibility.
+  * Add github actions, bail on asyncio patch for tornado 6.1. 
+  * Start testing on Python 3.9.
+  * Fix stack levels for ipykernel's deprecation warnings and stop
+using some deprecated APIs.
+  * Add env parameter to kernel installation
+  * Fix stop_on_error_timeout blocking other messages in queue.
+  * Remove most of the python 2 compat code.
+  * Remove u-prefix from strings.
+
+---

Old:

  ipykernel-5.3.4.tar.gz

New:

  ipykernel-5.4.2.tar.gz



Other differences:
--
++ python-ipykernel.spec ++
--- /var/tmp/diff_new_pack.khSDA3/_old  2020-12-16 11:00:22.523563286 +0100
+++ /var/tmp/diff_new_pack.khSDA3/_new  2020-12-16 11:00:22.527563289 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-ipykernel
-Version:5.3.4
+Version:5.4.2
 Release:0
 Summary:IPython Kernel for Jupyter
 License:BSD-3-Clause

++ ipykernel-5.3.4.tar.gz -> ipykernel-5.4.2.tar.gz ++
 1867 lines of diff (skipped)
___
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org