Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-spyder-kernels for
openSUSE:Factory checked in at 2026-03-04 21:09:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-spyder-kernels (Old)
and /work/SRC/openSUSE:Factory/.python-spyder-kernels.new.561 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-spyder-kernels"
Wed Mar 4 21:09:41 2026 rev:52 rq:1336293 version:3.1.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-spyder-kernels/python-spyder-kernels.changes
2025-11-24 14:10:31.908655776 +0100
+++
/work/SRC/openSUSE:Factory/.python-spyder-kernels.new.561/python-spyder-kernels.changes
2026-03-04 21:10:29.757535901 +0100
@@ -1,0 +2,9 @@
+Wed Mar 4 08:40:30 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 3.1.3:
+ * PR 576 - PR: Skip `test_get_interactive_backend` in Python
+ 3.9 and Linux, by @ccordoba12
+ * PR 575 - PR: Fix debugger stop in breakpoints set on modules
+ if stop on first line option is disabled, by @rear1019
+
+-------------------------------------------------------------------
Old:
----
spyder-kernels-3.1.2-gh.tar.gz
New:
----
spyder-kernels-3.1.3-gh.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-spyder-kernels.spec ++++++
--- /var/tmp/diff_new_pack.DA9uWW/_old 2026-03-04 21:10:30.653572934 +0100
+++ /var/tmp/diff_new_pack.DA9uWW/_new 2026-03-04 21:10:30.653572934 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-spyder-kernels
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
#
# 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 @@
# flaky for obs, only test locally
%bcond_with dasktest
Name: python-spyder-kernels
-Version: 3.1.2
+Version: 3.1.3
Release: 0
Summary: Jupyter kernels for Spyder's console
License: MIT
++++++ spyder-kernels-3.1.2-gh.tar.gz -> spyder-kernels-3.1.3-gh.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-3.1.2/CHANGELOG.md
new/spyder-kernels-3.1.3/CHANGELOG.md
--- old/spyder-kernels-3.1.2/CHANGELOG.md 2025-11-19 15:28:25.000000000
+0100
+++ new/spyder-kernels-3.1.3/CHANGELOG.md 2026-02-10 04:34:52.000000000
+0100
@@ -1,5 +1,16 @@
# History of changes
+## Version 3.1.3 (2026/02/09)
+
+### Pull Requests Merged
+
+* [PR 576](https://github.com/spyder-ide/spyder-kernels/pull/576) - PR: Skip
`test_get_interactive_backend` in Python 3.9 and Linux, by
[@ccordoba12](https://github.com/ccordoba12)
+* [PR 575](https://github.com/spyder-ide/spyder-kernels/pull/575) - PR: Fix
debugger stop in breakpoints set on modules if stop on first line option is
disabled, by [@rear1019](https://github.com/rear1019)
+
+In this release 2 pull requests were closed.
+
+----
+
## Version 3.1.2 (2025/11/19)
### Pull Requests Merged
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-3.1.2/spyder_kernels/_version.py
new/spyder-kernels-3.1.3/spyder_kernels/_version.py
--- old/spyder-kernels-3.1.2/spyder_kernels/_version.py 2025-11-19
15:28:25.000000000 +0100
+++ new/spyder-kernels-3.1.3/spyder_kernels/_version.py 2026-02-10
04:34:52.000000000 +0100
@@ -8,5 +8,5 @@
"""Version File."""
-VERSION_INFO = (3, 1, 2)
+VERSION_INFO = (3, 1, 3)
__version__ = '.'.join(map(str, VERSION_INFO))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-3.1.2/spyder_kernels/console/tests/test_console_kernel.py
new/spyder-kernels-3.1.3/spyder_kernels/console/tests/test_console_kernel.py
---
old/spyder-kernels-3.1.2/spyder_kernels/console/tests/test_console_kernel.py
2025-11-19 15:28:25.000000000 +0100
+++
new/spyder-kernels-3.1.3/spyder_kernels/console/tests/test_console_kernel.py
2026-02-10 04:34:52.000000000 +0100
@@ -635,9 +635,6 @@
@pytest.mark.flaky(max_runs=3)
@pytest.mark.skipif(
- sys.platform == 'darwin' and sys.version_info[:2] == (3, 8),
- reason="Fails on Mac with Python 3.8")
[email protected](
os.environ.get('USE_CONDA') != 'true',
reason="Doesn't work with pip packages")
def test_dask_multiprocessing(tmpdir):
@@ -756,9 +753,6 @@
@pytest.mark.flaky(max_runs=3)
[email protected](
- sys.platform == 'darwin' and sys.version_info[:2] == (3, 8),
- reason="Fails on Mac with Python 3.8")
def test_np_threshold(kernel):
"""
Test that setting Numpy threshold doesn't make the Variable Explorer slow.
@@ -1186,6 +1180,10 @@
os.environ.get('USE_CONDA') != 'true',
reason="Doesn't work with pip packages"
)
[email protected](
+ sys.version_info[:2] == (3, 9) and sys.platform.startswith("linux"),
+ reason="Fails with Python 3.9 on Linux"
+)
def test_get_interactive_backend(backend):
"""
Test that we correctly get the interactive backend set in the kernel.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-3.1.2/spyder_kernels/customize/spyderpdb.py
new/spyder-kernels-3.1.3/spyder_kernels/customize/spyderpdb.py
--- old/spyder-kernels-3.1.2/spyder_kernels/customize/spyderpdb.py
2025-11-19 15:28:25.000000000 +0100
+++ new/spyder-kernels-3.1.3/spyder_kernels/customize/spyderpdb.py
2026-02-10 04:34:52.000000000 +0100
@@ -287,6 +287,7 @@
if self.stopframe == self.botframe and self.stoplineno == -1:
return False
if self.continue_if_has_breakpoints and self.should_continue(frame):
+ self._wait_for_mainpyfile = False
self.set_continue()
return False
if (