Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-jupyter-sphinx for
openSUSE:Factory checked in at 2023-09-14 16:26:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jupyter-sphinx (Old)
and /work/SRC/openSUSE:Factory/.python-jupyter-sphinx.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jupyter-sphinx"
Thu Sep 14 16:26:05 2023 rev:8 rq:1111064 version:0.4.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-jupyter-sphinx/python-jupyter-sphinx.changes
2023-08-23 14:59:50.330228770 +0200
+++
/work/SRC/openSUSE:Factory/.python-jupyter-sphinx.new.1766/python-jupyter-sphinx.changes
2023-09-14 16:29:01.225772831 +0200
@@ -1,0 +2,6 @@
+Thu Sep 14 09:29:25 UTC 2023 - Ben Greiner <[email protected]>
+
+- Add jupyter-sphinx-pr233-pathlib.patch
+ gh#jupyter/jupyter-sphinx#233
+
+-------------------------------------------------------------------
New:
----
jupyter-sphinx-pr233-pathlib.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jupyter-sphinx.spec ++++++
--- /var/tmp/diff_new_pack.Lq51wT/_old 2023-09-14 16:29:02.329812272 +0200
+++ /var/tmp/diff_new_pack.Lq51wT/_new 2023-09-14 16:29:02.333812414 +0200
@@ -23,11 +23,14 @@
License: BSD-3-Clause
URL: https://github.com/jupyter-widgets/jupyter-sphinx
Source:
https://github.com/jupyter/jupyter-sphinx/archive/v%{version}.tar.gz#/jupyter-sphinx-%{version}-gh.tar.gz
-# PATCH-FIX-UPSTREAM jupyter-sphinx-pr226-ipykernel.patch
gh#upyter-widgets/jupyter-sphinx#226
+# PATCH-FIX-UPSTREAM jupyter-sphinx-pr226-ipykernel.patch
gh#jupyter-widgets/jupyter-sphinx#226
Patch0: jupyter-sphinx-pr226-ipykernel.patch
+# PATCH-FIX-UPSTREAM jupyter-sphinx-pr233-pathlib.patch
gh#jupyter-widgets/jupyter-sphinx#233
+Patch1: jupyter-sphinx-pr233-pathlib.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
+BuildRequires: %{python_module base >= 3.8}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-IPython
++++++ jupyter-sphinx-pr233-pathlib.patch ++++++
Index: jupyter-sphinx-0.4.0/requirements.txt
===================================================================
--- jupyter-sphinx-0.4.0.orig/requirements.txt
+++ jupyter-sphinx-0.4.0/requirements.txt
@@ -1,4 +1,4 @@
-sphinx>=2.4.4
+sphinx>=7.2
ipykernel>=4.5.1
ipywidgets>=7.0.0
IPython
Index: jupyter-sphinx-0.4.0/setup.py
===================================================================
--- jupyter-sphinx-0.4.0.orig/setup.py
+++ jupyter-sphinx-0.4.0/setup.py
@@ -29,13 +29,13 @@ setup(
license="BSD",
packages=["jupyter_sphinx"],
install_requires=[
- "Sphinx>=2",
+ "Sphinx>=7.2",
"ipykernel>=4.5.1",
"ipywidgets>=7.0.0",
"IPython",
"nbconvert>=5.5",
"nbformat",
],
- python_requires=">= 3.6",
+ python_requires=">= 3.8",
package_data={"jupyter_sphinx": ["thebelab/*", "css/*"]},
)
Index: jupyter-sphinx-0.4.0/tests/test_execute.py
===================================================================
--- jupyter-sphinx-0.4.0.orig/tests/test_execute.py
+++ jupyter-sphinx-0.4.0/tests/test_execute.py
@@ -12,7 +12,7 @@ from docutils.nodes import container, im
from nbformat import from_dict
from sphinx.addnodes import download_reference
from sphinx.errors import ExtensionError
-from sphinx.testing.util import SphinxTestApp, assert_node, path
+from sphinx.testing.util import SphinxTestApp, assert_node
from jupyter_sphinx.ast import (
JupyterCellNode,
@@ -48,7 +48,7 @@ def doctree():
warnings = StringIO()
app = SphinxTestApp(
- srcdir=path(src_dir.as_posix()),
+ srcdir=src_dir,
status=StringIO(),
warning=warnings,
buildername=buildername,
Index: jupyter-sphinx-0.4.0/tox.ini
===================================================================
--- jupyter-sphinx-0.4.0.orig/tox.ini
+++ jupyter-sphinx-0.4.0/tox.ini
@@ -1,9 +1,9 @@
[tox]
-envlist = py36,py37
+envlist = py38,py311
[testenv]
deps =
- sphinx
+ sphinx >= 7.2
pytest
commands =
pytest