forked from pool/python-nbconvert
Accepting request 961330 from home:apersaud:branches:devel:languages:python:jupyter
- specfile: * update nbconvert-vendorize-mistune.patch (linenumbers changed and lines before patch) * require beautiful-soup - update to version 6.4.4: * HTMLExporter: Respect the embed_images flag for HTML blocks PR #1721 - changes from version 6.4.3: * Remove ipython genutils PR #1727 * Add section to customizing showing how to use template inheritance PR #1719 OBS-URL: https://build.opensuse.org/request/show/961330 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=36
This commit is contained in:
parent
5241deb038
commit
bf2be8b3b0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eb2803db18f6facce6bf3b01b684fe47907994bd156d15eaccdf011e3d7f8164
|
|
||||||
size 902691
|
|
3
nbconvert-6.4.4.tar.gz
Normal file
3
nbconvert-6.4.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ee0dfe34bbd1082ac9bfc750aae3c73fcbc34a70c5574c6986ff83c10a3541fd
|
||||||
|
size 906988
|
@ -2,9 +2,9 @@ Index: nbconvert-6.3.0/nbconvert/filters/markdown_mistune.py
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- nbconvert-6.3.0.orig/nbconvert/filters/markdown_mistune.py
|
--- nbconvert-6.3.0.orig/nbconvert/filters/markdown_mistune.py
|
||||||
+++ nbconvert-6.3.0/nbconvert/filters/markdown_mistune.py
|
+++ nbconvert-6.3.0/nbconvert/filters/markdown_mistune.py
|
||||||
@@ -18,7 +18,7 @@ except ImportError:
|
@@ -23,7 +23,7 @@ except ImportError:
|
||||||
# Python 2
|
|
||||||
from cgi import escape as html_escape
|
import bs4
|
||||||
|
|
||||||
-import mistune
|
-import mistune
|
||||||
+from nbconvert.vendor import mistune
|
+from nbconvert.vendor import mistune
|
||||||
@ -15,7 +15,7 @@ Index: nbconvert-6.3.0/setup.py
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- nbconvert-6.3.0.orig/setup.py
|
--- nbconvert-6.3.0.orig/setup.py
|
||||||
+++ nbconvert-6.3.0/setup.py
|
+++ nbconvert-6.3.0/setup.py
|
||||||
@@ -212,7 +212,6 @@ setup_args = dict(
|
@@ -214,7 +214,6 @@ setup_args = dict(
|
||||||
)
|
)
|
||||||
|
|
||||||
setup_args['install_requires'] = [
|
setup_args['install_requires'] = [
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 12 04:50:52 UTC 2022 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* update nbconvert-vendorize-mistune.patch (linenumbers changed and lines before patch)
|
||||||
|
* require beautiful-soup
|
||||||
|
|
||||||
|
- update to version 6.4.4:
|
||||||
|
* HTMLExporter: Respect the embed_images flag for HTML blocks PR
|
||||||
|
#1721
|
||||||
|
|
||||||
|
- changes from version 6.4.3:
|
||||||
|
* Remove ipython genutils PR #1727
|
||||||
|
* Add section to customizing showing how to use template inheritance
|
||||||
|
PR #1719
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 19 03:07:52 UTC 2022 - Arun Persaud <arun@gmx.de>
|
Sat Feb 19 03:07:52 UTC 2022 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
%{?!python_module:%define python_module() python3-%{**}}
|
%{?!python_module:%define python_module() python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-nbconvert%{psuffix}
|
Name: python-nbconvert%{psuffix}
|
||||||
Version: 6.4.2
|
Version: 6.4.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Conversion of Jupyter Notebooks
|
Summary: Conversion of Jupyter Notebooks
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -43,6 +43,7 @@ Source3: https://files.pythonhosted.org/packages/source/m/mistune/mistune
|
|||||||
# PATCH-FIX-OPENSUSE nbconvert-vendorize-mistune.patch -- gh#jupyter/nbconvert#1685
|
# PATCH-FIX-OPENSUSE nbconvert-vendorize-mistune.patch -- gh#jupyter/nbconvert#1685
|
||||||
Patch1: nbconvert-vendorize-mistune.patch
|
Patch1: nbconvert-vendorize-mistune.patch
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
|
BuildRequires: %{python_module beautifulsoup4}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -50,6 +51,7 @@ BuildRequires: unzip
|
|||||||
Requires: jupyter-nbconvert = %{version}
|
Requires: jupyter-nbconvert = %{version}
|
||||||
Requires: python-Jinja2 >= 2.4
|
Requires: python-Jinja2 >= 2.4
|
||||||
Requires: python-Pygments >= 2.4.1
|
Requires: python-Pygments >= 2.4.1
|
||||||
|
Requires: python-beautifulsoup4
|
||||||
Requires: python-bleach
|
Requires: python-bleach
|
||||||
Requires: python-defusedxml
|
Requires: python-defusedxml
|
||||||
Requires: python-entrypoints >= 0.2.2
|
Requires: python-entrypoints >= 0.2.2
|
||||||
|
Loading…
Reference in New Issue
Block a user