Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-jupyter-core for
openSUSE:Factory checked in at 2023-10-08 12:19:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jupyter-core (Old)
and /work/SRC/openSUSE:Factory/.python-jupyter-core.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jupyter-core"
Sun Oct 8 12:19:03 2023 rev:19 rq:1116211 version:5.3.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-jupyter-core/python-jupyter-core.changes
2023-07-04 15:22:28.586240424 +0200
+++
/work/SRC/openSUSE:Factory/.python-jupyter-core.new.28202/python-jupyter-core.changes
2023-10-08 12:22:48.667849243 +0200
@@ -1,0 +2,6 @@
+Sat Oct 7 13:07:45 UTC 2023 - Ben Greiner <[email protected]>
+
+- Update to 5.3.2
+ * Fix event loop handling #362 (@blink1073)
+
+-------------------------------------------------------------------
Old:
----
jupyter_core-5.3.1.tar.gz
New:
----
jupyter_core-5.3.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jupyter-core.spec ++++++
--- /var/tmp/diff_new_pack.BbvUAY/_old 2023-10-08 12:22:49.735887643 +0200
+++ /var/tmp/diff_new_pack.BbvUAY/_new 2023-10-08 12:22:49.735887643 +0200
@@ -32,7 +32,7 @@
%endif
Name: python-jupyter-core%{psuffix}
-Version: 5.3.1
+Version: 5.3.2
Release: 0
Summary: Base package on which Jupyter projects rely
License: BSD-3-Clause
@@ -84,9 +84,9 @@
%prep
%autosetup -p1 -n jupyter_core-%{version}
# Set the appropriate hardcoded paths dynamically
-sed -i "s|@_datadir_jupyter_@|\"%{_datadir}/jupyter\"|" jupyter_core/paths.py
-sed -i "s|@_distconfdir_jupyter_@|\"%{_distconfdir}/jupyter\"|"
jupyter_core/paths.py
-sed -i "/addopts/ s/--color=yes//" pyproject.toml
+sed -i "s|@_datadir_jupyter_@|%{_datadir}/jupyter|" jupyter_core/paths.py
+sed -i "s|@_distconfdir_jupyter_@|%{_distconfdir}/jupyter|"
jupyter_core/paths.py
+sed -i "/addopts/,/]/ s/--color=yes//" pyproject.toml
%if !%{with test}
%build
++++++ jupyter_core-5.3.1.tar.gz -> jupyter_core-5.3.2.tar.gz ++++++
++++ 13174 lines of diff (skipped)
++++++ use_rpms_paths.patch ++++++
--- /var/tmp/diff_new_pack.BbvUAY/_old 2023-10-08 12:22:49.847891670 +0200
+++ /var/tmp/diff_new_pack.BbvUAY/_new 2023-10-08 12:22:49.851891813 +0200
@@ -7,10 +7,10 @@
---
-Index: jupyter_core-5.1.1/jupyter_core/paths.py
+Index: jupyter_core-5.3.2/jupyter_core/paths.py
===================================================================
---- jupyter_core-5.1.1.orig/jupyter_core/paths.py
-+++ jupyter_core-5.1.1/jupyter_core/paths.py
+--- jupyter_core-5.3.2.orig/jupyter_core/paths.py
++++ jupyter_core-5.3.2/jupyter_core/paths.py
@@ -219,10 +219,7 @@ else:
else: # PROGRAMDATA is not defined by default on XP.
SYSTEM_JUPYTER_PATH = [os.path.join(sys.prefix, "share",
"jupyter")]
@@ -19,11 +19,26 @@
- "/usr/local/share/jupyter",
- "/usr/share/jupyter",
- ]
-+ SYSTEM_JUPYTER_PATH = [ @_datadir_jupyter_@ ]
++ SYSTEM_JUPYTER_PATH = [ "@_datadir_jupyter_@" ]
ENV_JUPYTER_PATH: List[str] = [os.path.join(sys.prefix, "share", "jupyter")]
-@@ -301,10 +298,7 @@ else:
+@@ -243,10 +240,10 @@ def jupyter_path(*subdirs: str) -> List[
+
+ Examples:
+
+- >>> jupyter_path()
+- ['~/.local/jupyter', '/usr/local/share/jupyter']
+- >>> jupyter_path('kernels')
+- ['~/.local/jupyter/kernels', '/usr/local/share/jupyter/kernels']
++ >>> jupyter_path() # doctest: +SKIP
++ ['~/.local/share/jupyter', '@_datadir_jupyter_@']
++ >>> jupyter_path('kernels') # doctest: +SKIP
++ ['~/.local/share/jupyter/kernels', '@_datadir_jupyter_@/kernels']
+ """
+
+ paths: List[str] = []
+@@ -298,10 +295,7 @@ else: # noqa: PLR5501
else: # PROGRAMDATA is not defined by default on XP.
SYSTEM_CONFIG_PATH = []
else:
@@ -31,7 +46,7 @@
- "/usr/local/etc/jupyter",
- "/etc/jupyter",
- ]
-+ SYSTEM_CONFIG_PATH = [ @_distconfdir_jupyter_@ ]
++ SYSTEM_CONFIG_PATH = [ "@_distconfdir_jupyter_@" ]
ENV_CONFIG_PATH: List[str] = [os.path.join(sys.prefix, "etc", "jupyter")]