17
0

- 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
This commit is contained in:
2025-12-01 23:39:29 +00:00
committed by Git OBS Bridge
parent 855e4e25b3
commit d5d8287d40
4 changed files with 23 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2372ce8bc1ff4f34e58cafed3a0feb2194b91fc7cad0fc72e79e47b45ee9e8f6
size 167493

3
ipykernel-7.1.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58a3fc88533d5930c3546dc7eac66c6d288acde4f801e2001e65edc5dc9cf0db
size 174579

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Dec 1 23:24:08 UTC 2025 - Dirk Müller <dmueller@suse.com>
- 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á <mmachova@suse.com>

View File

@@ -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"