From d5d8287d40ac004ececd614d30f91b502a7945f03c732c5391e7db4e15465fbd Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 1 Dec 2025 23:39:29 +0000 Subject: [PATCH] - update to 7.1.0: * fix ContextVar persistence across cells #1462 (@minrk) * Fix matplotlib eventloops #1458 (@ianthomas23) * Refer to kernel launching thread instead of assuming the main thread #1455 * Fix routing of background thread output when no parent is set explicitly #1451 (@minrk) * Fix KeyboardInterrupt on Windows by manually resetting interrupt event #1434 (@ptosco) * Maintenance and upkeep improvements * test that matplotlib event loop integration is responsive * update tests for 3.14 #1453 (@minrk) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipykernel?expand=0&rev=121 --- ipykernel-6.31.0.tar.gz | 3 --- ipykernel-7.1.0.tar.gz | 3 +++ python-ipykernel.changes | 16 ++++++++++++++++ python-ipykernel.spec | 6 ++++-- 4 files changed, 23 insertions(+), 5 deletions(-) delete mode 100644 ipykernel-6.31.0.tar.gz create mode 100644 ipykernel-7.1.0.tar.gz diff --git a/ipykernel-6.31.0.tar.gz b/ipykernel-6.31.0.tar.gz deleted file mode 100644 index 30bc0d4..0000000 --- a/ipykernel-6.31.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2372ce8bc1ff4f34e58cafed3a0feb2194b91fc7cad0fc72e79e47b45ee9e8f6 -size 167493 diff --git a/ipykernel-7.1.0.tar.gz b/ipykernel-7.1.0.tar.gz new file mode 100644 index 0000000..f8ca858 --- /dev/null +++ b/ipykernel-7.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a3fc88533d5930c3546dc7eac66c6d288acde4f801e2001e65edc5dc9cf0db +size 174579 diff --git a/python-ipykernel.changes b/python-ipykernel.changes index 55424bf..542171b 100644 --- a/python-ipykernel.changes +++ b/python-ipykernel.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Mon Dec 1 23:24:08 UTC 2025 - Dirk Müller + +- update to 7.1.0: + * fix ContextVar persistence across cells #1462 (@minrk) + * Fix matplotlib eventloops #1458 (@ianthomas23) + * Refer to kernel launching thread instead of assuming the + main thread #1455 + * Fix routing of background thread output when no parent is set + explicitly #1451 (@minrk) + * Fix KeyboardInterrupt on Windows by manually resetting + interrupt event #1434 (@ptosco) + * Maintenance and upkeep improvements + * test that matplotlib event loop integration is responsive + * update tests for 3.14 #1453 (@minrk) + ------------------------------------------------------------------- Mon Oct 20 15:11:47 UTC 2025 - Markéta Machová diff --git a/python-ipykernel.spec b/python-ipykernel.spec index e15a9cd..2e9b23d 100644 --- a/python-ipykernel.spec +++ b/python-ipykernel.spec @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-ipykernel -Version: 6.31.0 +Version: 7.1.0 Release: 0 Summary: IPython Kernel for Jupyter License: BSD-3-Clause @@ -77,6 +77,7 @@ BuildRequires: %{python_module flaky} BuildRequires: %{python_module matplotlib} BuildRequires: %{python_module pytest >= 7.0} BuildRequires: %{python_module pytest-asyncio >= 0.23.5} +BuildRequires: %{python_module pytest-cov} BuildRequires: %{python_module pytest-timeout} # we don't want ipyparallel and its dependencies in Ring1, see below #BuildRequires: #{python_module ipyparallel} @@ -114,7 +115,8 @@ $python -m ipykernel install \ # fails in obs setups ignoretests="--ignore tests/test_debugger.py" # flaky obs timeouts -donttest="test_init_ipc_socket" +# requires gui +donttest="test_init_ipc_socket or test_matplotlib_gui" # we don't want ipyparallel and its dependencies in Ring1 ignoretests="$ignoretests --ignore tests/test_pickleutil.py" donttest="$donttest or test_do_apply"