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-30 18:31:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-spyder-kernels (Old)
and /work/SRC/openSUSE:Factory/.python-spyder-kernels.new.1999 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-spyder-kernels"
Mon Mar 30 18:31:22 2026 rev:53 rq:1343504 version:3.1.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-spyder-kernels/python-spyder-kernels.changes
2026-03-04 21:10:29.757535901 +0100
+++
/work/SRC/openSUSE:Factory/.python-spyder-kernels.new.1999/python-spyder-kernels.changes
2026-03-30 18:34:31.275140302 +0200
@@ -1,0 +2,8 @@
+Sun Mar 29 18:26:13 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 3.1.4:
+ * Issue 584 - `FileNotFoundError` when connecting from Spyder
+ to a kernel running on a WSL instance (PR 585 by @ccordoba12)
+ * In this release 1 issue was closed.
+
+-------------------------------------------------------------------
Old:
----
spyder-kernels-3.1.3-gh.tar.gz
New:
----
spyder-kernels-3.1.4-gh.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-spyder-kernels.spec ++++++
--- /var/tmp/diff_new_pack.T4PiAT/_old 2026-03-30 18:34:32.259181442 +0200
+++ /var/tmp/diff_new_pack.T4PiAT/_new 2026-03-30 18:34:32.259181442 +0200
@@ -19,7 +19,7 @@
# flaky for obs, only test locally
%bcond_with dasktest
Name: python-spyder-kernels
-Version: 3.1.3
+Version: 3.1.4
Release: 0
Summary: Jupyter kernels for Spyder's console
License: MIT
@@ -42,7 +42,7 @@
BuildRequires: %{python_module flaky}
BuildRequires: %{python_module h5py}
BuildRequires: %{python_module ipykernel >= 6.29.3 with %python-ipykernel < 7}
-BuildRequires: %{python_module ipython >= 8.13 with %python-ipython < 10}
+BuildRequires: %{python_module ipython >= 8.15 with %python-ipython < 10}
BuildRequires: %{python_module jupyter_client >= 7.4.9 with
%python-jupyter_client < 9}
BuildRequires: %{python_module matplotlib}
BuildRequires: %{python_module numpy}
++++++ spyder-kernels-3.1.3-gh.tar.gz -> spyder-kernels-3.1.4-gh.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-3.1.3/CHANGELOG.md
new/spyder-kernels-3.1.4/CHANGELOG.md
--- old/spyder-kernels-3.1.3/CHANGELOG.md 2026-02-10 04:34:52.000000000
+0100
+++ new/spyder-kernels-3.1.4/CHANGELOG.md 2026-03-25 17:55:52.000000000
+0100
@@ -1,5 +1,21 @@
# History of changes
+## Version 3.1.4 (2026/03/25)
+
+### Issues Closed
+
+* [Issue 584](https://github.com/spyder-ide/spyder-kernels/issues/584) -
`FileNotFoundError` when connecting from Spyder to a kernel running on a WSL
instance ([PR 585](https://github.com/spyder-ide/spyder-kernels/pull/585) by
[@ccordoba12](https://github.com/ccordoba12))
+
+In this release 1 issue was closed.
+
+### Pull Requests Merged
+
+* [PR 585](https://github.com/spyder-ide/spyder-kernels/pull/585) - PR: Check
if a directory exists before trying to change the current working directory, by
[@ccordoba12](https://github.com/ccordoba12)
([584](https://github.com/spyder-ide/spyder-kernels/issues/584))
+
+In this release 1 pull request was closed.
+
+----
+
## Version 3.1.3 (2026/02/09)
### Pull Requests Merged
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spyder-kernels-3.1.3/spyder_kernels/_version.py
new/spyder-kernels-3.1.4/spyder_kernels/_version.py
--- old/spyder-kernels-3.1.3/spyder_kernels/_version.py 2026-02-10
04:34:52.000000000 +0100
+++ new/spyder-kernels-3.1.4/spyder_kernels/_version.py 2026-03-25
17:55:52.000000000 +0100
@@ -8,5 +8,5 @@
"""Version File."""
-VERSION_INFO = (3, 1, 3)
+VERSION_INFO = (3, 1, 4)
__version__ = '.'.join(map(str, VERSION_INFO))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/spyder-kernels-3.1.3/spyder_kernels/console/kernel.py
new/spyder-kernels-3.1.4/spyder_kernels/console/kernel.py
--- old/spyder-kernels-3.1.3/spyder_kernels/console/kernel.py 2026-02-10
04:34:52.000000000 +0100
+++ new/spyder-kernels-3.1.4/spyder_kernels/console/kernel.py 2026-03-25
17:55:52.000000000 +0100
@@ -646,7 +646,7 @@
"""Set kernel configuration"""
ret = {}
for key, value in conf.items():
- if key == "cwd":
+ if key == "cwd" and os.path.isdir(value):
self._cwd_initialised = True
os.chdir(value)
self.publish_state()