forked from pool/python-nbconvert
Benjamin Greiner
d566a91d0d
- Now update to 6.3.0 * traitlets 5 is ready * for changelog see below OBS-URL: https://build.opensuse.org/request/show/944204 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=32
26 lines
825 B
Diff
26 lines
825 B
Diff
Index: nbconvert-6.3.0/nbconvert/filters/markdown_mistune.py
|
|
===================================================================
|
|
--- nbconvert-6.3.0.orig/nbconvert/filters/markdown_mistune.py
|
|
+++ nbconvert-6.3.0/nbconvert/filters/markdown_mistune.py
|
|
@@ -18,7 +18,7 @@ except ImportError:
|
|
# Python 2
|
|
from cgi import escape as html_escape
|
|
|
|
-import mistune
|
|
+from nbconvert.vendor import mistune
|
|
|
|
from pygments import highlight
|
|
from pygments.lexers import get_lexer_by_name
|
|
Index: nbconvert-6.3.0/setup.py
|
|
===================================================================
|
|
--- nbconvert-6.3.0.orig/setup.py
|
|
+++ nbconvert-6.3.0/setup.py
|
|
@@ -212,7 +212,6 @@ setup_args = dict(
|
|
)
|
|
|
|
setup_args['install_requires'] = [
|
|
- 'mistune>=0.8.1,<2',
|
|
'jinja2>=2.4',
|
|
'pygments>=2.4.1',
|
|
'jupyterlab_pygments',
|