pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-nbconvert py-nbconvert: updated to 6.4.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/92f1faab7a65
branches:  trunk
changeset: 373056:92f1faab7a65
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Feb 05 11:29:16 2022 +0000

description:
py-nbconvert: updated to 6.4.1

6.4.0
-----
* Allow passing extra args to code highlighter
* Prevent page breaks in outputs when printing
* Add collapsers to template
* Optionally speed up validation

6.3.0
-----
* Update state filter
* Add slide numbering
* Fix HTML templates mentioned in help docs

6.2.0
-----
* Add the ability to fully customize ``widget_renderer_url``
* Enable users to customize MathJax URLs
* Add CLI configuration for disable-chromium-sandbox
* Enables webpdf to be rendered with templates
* Adds dejavu

6.1.0
-----
This release is mostly a long list of bug fixes and capability
additions. Thanks to the many contributors for helping Improve
nbconvert!

Significant Changes
~~~~~~~~~~~~~~~~~~~
* Dropped Python 3.6 and added Python 3.9
* Convert execute preprocessor wrapper to resemble papermill

Comprehensive notes
~~~~~~~~~~~~~~~~~~~
* Feature: support static widgets in Reveal.js slides
* Feature: add speaker notes to Reveal.js template
* Add correct output mimetype to WebPDF exporter
* Set mimetype for webpdf correctly
* Fix docstring issue and a broken  link
* Add CLI example for removing cell tag syntax
* Include output of stdin stream in lab template
* Don't use a shell to call inkscape
* JupyterLab export as HTML with widgets fails to load widgets
* Move note inside Reveal.js HTML slideshow
* fix issue 1507: broken command line option --CSSHTMLHeaderPreprocessor.style=
* Fix order of template paths
* Changed documentation of external_exporters
* Fix template precedence when using a custom template
* add  pip to docs  envt
* Fix CI  By Adding PIP to  conda envt for docs build
* Explicitly install pip in docs environment.yml
* small update to docs hide cell
* Allow child templates to override mathjax
* Allow get_export_names to skip configuration check
* Update docs: Tex Live package on Ubuntu
* Test jupyter_client
* Update jupyterlab css
* Webpdf: Use a temporary file instead of an URL
* Applied patch for marking network changes
* Change webpdf display name
* Allow disabling pyppeteer sandbox
* Make pagination configurable in webpdf
* Fix Reveal.js version in documentation
* Fix dangling reference to get_template_paths()
* Solved svg2pdf conversion error if Inkscape is installed into the default path on a windows machine
* fix typo
* Update version dependency of traitlets
* Update execute.py
* Fix code output indentation when running nbconvert --no-input
* fix issue (i'd call it a BUG)
* add docstring
* Update nbconvert_library.ipynb
* Supports isolated iframe when converting to HTML

6.0.7
-----
Primarly a release addressing template extensions issues reported since 6.0 launched.

Comprehensive notes
~~~~~~~~~~~~~~~~~~~
- Comment typo fix
- Documented updated to default conversion changes from 6.0
- Allow custom template files outside of the template system to set their base template name
- Restored basic template from 5.x
- Added proper support for backwards compatibility templates

6.0.6
-----
A range of bug fixes for webpdf exports

Comprehensive notes
~~~~~~~~~~~~~~~~~~~
- Removed CSS preprocessor from default proprocessor list (fixes classic rendering)
- Fixed error when pickling TemplateExporter
- Support for fractional height html / webpdf exports
- Added short wait time for fonts and rendering in webpdf
- Updated template documentation
- Minor fixes to the webpdf exporter
- Fixup use with a running event loop within webpdf
- Prevent overflow in input areas in lab template

6.0.5
-----
- Revert networkidle2 change which caused custom cdn-fetched widgets in webpdf

6.0.4
-----
Comprehensive notes
~~~~~~~~~~~~~~~~~~~
Fixing Problems
- The webpdf exporters does not add pagebreaks anymore before reaching the maximum height allowed by Adobe
- Fixes some timeout issues with the webpdf exporter

6.0.3
-----
Execute preprocessor no longer add illegal execution counts to markdown cells

6.0.2
-----
A patch for a few minor issues raised out of the 6.0 release.

Comprehensive notes
~~~~~~~~~~~~~~~~~~~
Fixing Problems
- Added windows work-around fix in CLI for async applications
- Fixed pathed template files to behave correctly for local relative paths without a dot
- ExecuteProcessor now properly has a ``preprocess_cell`` function to overwrite

Testing, Docs, and Builds
- Updated README and docs with guidance on how to get help with nbconvert
- Fixed documentation that was referencing ``template_path`` instead of ``template_paths``

6.0.1
-----
A quick patch to fix an issue with get_exporter

6.0
---
Significant Changes
~~~~~~~~~~~~~~~~~~~
Nbconvert 6.0 is a major release of nbconvert which includes many significant changes.

- Python 2 support was dropped. Currently Python 3.6-3.8 is supported and tested by nbconvert. However, nbconvert 6.0 provides limited support for Python 3.6. nbconvert 6.1 will drop support for 
Python 3.6. Limited support means we will test and run CI on Python 3.6.12 or higher. Issues that are found only affecting Python 3.6 are not guaranteed to be fixed. We recommend all users of 
nbconvert use Python 3.7 and higher.

- Unlike previous versions, nbconvert 6.0 relies on the `nbclient <https://github.com/jupyter/nbclient/>`__ package for the execute preprocessor, which allows for asynchronous kernel requests.

- ``template_path`` has become ``template_paths``. If referring to a 5.x style ``.tpl`` template use the full path with the ``template_file`` argument to the file. On the command line the pattern is 
``--template-file=<path/to/file.tpl>``.

- Nbconvert 6.0 includes a new "webpdf" exporter, which renders notebooks in pdf format through a headless web browser, so that complex outputs such as HTML tables, or even widgets are rendered in 
the same way as with the HTML exporter and a web browser.

- The default template applied when exporting to HTML now produces the same DOM structure as JupyterLab, and is styled using JupyterLab's CSS. The pygments theme in use mimics JupyterLab's codemirror 
mode with the same CSS variables, so that custom JupyterLab themes could be applied. The classic notebook styling can still be enabled with

.. code-block:: bash

   jupyter nbconvert --to html --template classic

- Nbconvert 6.0 includes a new system for creating custom templates, which can now be installed as packages. A custom "foobar" template is installed in Jupyter's data directory under 
``nbconvert/templates`` and has the form of a directory containing all resources. Templates specify their base template as well as other configuration parameters in a ``conf.json`` at the root of the 
template directory.

- The "slideshow" template now makes use of RevealJS version 4. It can now be used with the HTML exporter with

.. code-block:: bash

   jupyter nbconvert --to html --template reveal

The ``--to slides`` exporter is still supported for convenience.

- Inkscape 1.0 is now supported, which had some breaking changes that prevented 5.x versions of nbconvert from converting documents on some systems that updated.

Remaining changes
~~~~~~~~~~~~~~~~~
We merged 105 pull requests! Rather than enumerate all of them we'll link to the github page which contains the many smaller impact improvements.

diffstat:

 www/py-nbconvert/ALTERNATIVES |    1 +
 www/py-nbconvert/Makefile     |   31 ++++++-----
 www/py-nbconvert/PLIST        |  116 +++++++++++++++++++++++------------------
 www/py-nbconvert/distinfo     |    8 +-
 4 files changed, 86 insertions(+), 70 deletions(-)

diffs (275 lines):

diff -r b3716b7330d2 -r 92f1faab7a65 www/py-nbconvert/ALTERNATIVES
--- a/www/py-nbconvert/ALTERNATIVES     Sat Feb 05 11:26:35 2022 +0000
+++ b/www/py-nbconvert/ALTERNATIVES     Sat Feb 05 11:29:16 2022 +0000
@@ -1,1 +1,2 @@
+bin/jupyter-dejavu @PREFIX@/bin/jupyter-dejavu-@PYVERSSUFFIX@
 bin/jupyter-nbconvert @PREFIX@/bin/jupyter-nbconvert-@PYVERSSUFFIX@
diff -r b3716b7330d2 -r 92f1faab7a65 www/py-nbconvert/Makefile
--- a/www/py-nbconvert/Makefile Sat Feb 05 11:26:35 2022 +0000
+++ b/www/py-nbconvert/Makefile Sat Feb 05 11:29:16 2022 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2022/01/10 08:05:24 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2022/02/05 11:29:16 adam Exp $
 
-DISTNAME=      nbconvert-5.6.1
+DISTNAME=      nbconvert-6.4.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/nbconvert/}
 
@@ -11,21 +10,21 @@
 COMMENT=       Converting Jupyter Notebooks
 LICENSE=       modified-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-bleach-[0-9]*:../../www/py-bleach
-DEPENDS+=      ${PYPKGPREFIX}-defusedxml-[0-9]*:../../textproc/py-defusedxml
+DEPENDS+=      ${PYPKGPREFIX}-bleach>0:../../www/py-bleach
+DEPENDS+=      ${PYPKGPREFIX}-defusedxml>0:../../textproc/py-defusedxml
 DEPENDS+=      ${PYPKGPREFIX}-entrypoints>=0.2.2:../../devel/py-entrypoints
-DEPENDS+=      ${PYPKGPREFIX}-ipykernel-[0-9]*:../../devel/py-ipykernel
-DEPENDS+=      ${PYPKGPREFIX}-ipywidgets>=7:../../www/py-ipywidgets
 DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.4:../../textproc/py-jinja2
-DEPENDS+=      ${PYPKGPREFIX}-jupyter_client>=5.3.1:../../devel/py-jupyter_client
-DEPENDS+=      ${PYPKGPREFIX}-jupyter_core-[0-9]*:../../devel/py-jupyter_core
+DEPENDS+=      ${PYPKGPREFIX}-jupyter_core>0:../../devel/py-jupyter_core
+DEPENDS+=      ${PYPKGPREFIX}-jupyterlab-pygments>0:../../textproc/py-jupyterlab-pygments
 DEPENDS+=      ${PYPKGPREFIX}-mistune>=0.8.1:../../textproc/py-mistune
+DEPENDS+=      ${PYPKGPREFIX}-nbclient>=0.5.0:../../www/py-nbclient
 DEPENDS+=      ${PYPKGPREFIX}-nbformat>=4.4:../../www/py-nbformat
 DEPENDS+=      ${PYPKGPREFIX}-pandocfilters>=1.4.1:../../textproc/py-pandocfilters
-DEPENDS+=      ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments
+DEPENDS+=      ${PYPKGPREFIX}-pygments>=2.4.1:../../textproc/py-pygments
 DEPENDS+=      ${PYPKGPREFIX}-testpath-[0-9]*:../../devel/py-testpath
+DEPENDS+=      ${PYPKGPREFIX}-traitlets>=5.0:../../devel/py-traitlets
+# marked as extra, but required
 DEPENDS+=      ${PYPKGPREFIX}-tornado>=4.0:../../www/py-tornado
-DEPENDS+=      ${PYPKGPREFIX}-traitlets>=4.2:../../devel/py-traitlets
 TEST_DEPENDS+= ${PYPKGPREFIX}-pebble-[0-9]*:../../devel/py-pebble
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
@@ -33,14 +32,18 @@
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27 # py-ipykernel
+PYTHON_SELF_CONFLICT=  yes
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 post-install:
+.for bin in jupyter-dejavu jupyter-nbconvert
        cd ${DESTDIR}${PREFIX}/bin && \
-       ${MV} jupyter-nbconvert jupyter-nbconvert-${PYVERSSUFFIX} || ${TRUE}
+       ${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
+.endfor
 
 do-test:
-       cd ${WRKSRC} && py.test-${PYVERSSUFFIX}
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r b3716b7330d2 -r 92f1faab7a65 www/py-nbconvert/PLIST
--- a/www/py-nbconvert/PLIST    Sat Feb 05 11:26:35 2022 +0000
+++ b/www/py-nbconvert/PLIST    Sat Feb 05 11:29:16 2022 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.8 2022/01/10 08:05:24 wiz Exp $
+@comment $NetBSD: PLIST,v 1.9 2022/02/05 11:29:16 adam Exp $
+bin/jupyter-dejavu-${PYVERSSUFFIX}
 bin/jupyter-nbconvert-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -24,15 +25,9 @@
 ${PYSITELIB}/nbconvert/exporters/base.py
 ${PYSITELIB}/nbconvert/exporters/base.pyc
 ${PYSITELIB}/nbconvert/exporters/base.pyo
-${PYSITELIB}/nbconvert/exporters/export.py
-${PYSITELIB}/nbconvert/exporters/export.pyc
-${PYSITELIB}/nbconvert/exporters/export.pyo
 ${PYSITELIB}/nbconvert/exporters/exporter.py
 ${PYSITELIB}/nbconvert/exporters/exporter.pyc
 ${PYSITELIB}/nbconvert/exporters/exporter.pyo
-${PYSITELIB}/nbconvert/exporters/exporter_locator.py
-${PYSITELIB}/nbconvert/exporters/exporter_locator.pyc
-${PYSITELIB}/nbconvert/exporters/exporter_locator.pyo
 ${PYSITELIB}/nbconvert/exporters/html.py
 ${PYSITELIB}/nbconvert/exporters/html.pyc
 ${PYSITELIB}/nbconvert/exporters/html.pyo
@@ -73,7 +68,9 @@
 ${PYSITELIB}/nbconvert/exporters/tests/cheese.pyc
 ${PYSITELIB}/nbconvert/exporters/tests/cheese.pyo
 ${PYSITELIB}/nbconvert/exporters/tests/files/attachment.ipynb
+${PYSITELIB}/nbconvert/exporters/tests/files/lablike.html.j2
 ${PYSITELIB}/nbconvert/exporters/tests/files/notebook2.ipynb
+${PYSITELIB}/nbconvert/exporters/tests/files/notebook3.ipynb
 ${PYSITELIB}/nbconvert/exporters/tests/files/pngmetadata.ipynb
 ${PYSITELIB}/nbconvert/exporters/tests/files/prompt_numbers.ipynb
 ${PYSITELIB}/nbconvert/exporters/tests/files/rawtest.ipynb
@@ -117,6 +114,12 @@
 ${PYSITELIB}/nbconvert/exporters/tests/test_templateexporter.py
 ${PYSITELIB}/nbconvert/exporters/tests/test_templateexporter.pyc
 ${PYSITELIB}/nbconvert/exporters/tests/test_templateexporter.pyo
+${PYSITELIB}/nbconvert/exporters/tests/test_webpdf.py
+${PYSITELIB}/nbconvert/exporters/tests/test_webpdf.pyc
+${PYSITELIB}/nbconvert/exporters/tests/test_webpdf.pyo
+${PYSITELIB}/nbconvert/exporters/webpdf.py
+${PYSITELIB}/nbconvert/exporters/webpdf.pyc
+${PYSITELIB}/nbconvert/exporters/webpdf.pyo
 ${PYSITELIB}/nbconvert/filters/__init__.py
 ${PYSITELIB}/nbconvert/filters/__init__.pyc
 ${PYSITELIB}/nbconvert/filters/__init__.pyo
@@ -180,6 +183,9 @@
 ${PYSITELIB}/nbconvert/filters/tests/test_strings.py
 ${PYSITELIB}/nbconvert/filters/tests/test_strings.pyc
 ${PYSITELIB}/nbconvert/filters/tests/test_strings.pyo
+${PYSITELIB}/nbconvert/filters/widgetsdatatypefilter.py
+${PYSITELIB}/nbconvert/filters/widgetsdatatypefilter.pyc
+${PYSITELIB}/nbconvert/filters/widgetsdatatypefilter.pyo
 ${PYSITELIB}/nbconvert/nbconvertapp.py
 ${PYSITELIB}/nbconvert/nbconvertapp.pyc
 ${PYSITELIB}/nbconvert/nbconvertapp.pyo
@@ -252,28 +258,8 @@
 ${PYSITELIB}/nbconvert/preprocessors/tests/fake_kernelmanager.py
 ${PYSITELIB}/nbconvert/preprocessors/tests/fake_kernelmanager.pyc
 ${PYSITELIB}/nbconvert/preprocessors/tests/fake_kernelmanager.pyo
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Check History in Memory.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Clear Output.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Disable Stdin.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Empty Cell.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Factorials.ipynb
 ${PYSITELIB}/nbconvert/preprocessors/tests/files/HelloWorld.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Inline Image.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Interrupt-IPY6.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Interrupt.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/JupyterWidgets.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Parallel Execute A.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Parallel Execute B.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/SVG.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Skip Exceptions with Cell Tags-IPY6.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Skip Exceptions with Cell Tags.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Skip Exceptions-IPY6.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Skip Exceptions.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Sleep One.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/Unicode.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/UnicodePy3.ipynb
-${PYSITELIB}/nbconvert/preprocessors/tests/files/python.png
-${PYSITELIB}/nbconvert/preprocessors/tests/files/update-display-id.ipynb
+${PYSITELIB}/nbconvert/preprocessors/tests/files/MixedMarkdown.ipynb
 ${PYSITELIB}/nbconvert/preprocessors/tests/test_clearmetadata.py
 ${PYSITELIB}/nbconvert/preprocessors/tests/test_clearmetadata.pyc
 ${PYSITELIB}/nbconvert/preprocessors/tests/test_clearmetadata.pyo
@@ -313,32 +299,8 @@
 ${PYSITELIB}/nbconvert/resources/__init__.py
 ${PYSITELIB}/nbconvert/resources/__init__.pyc
 ${PYSITELIB}/nbconvert/resources/__init__.pyo
-${PYSITELIB}/nbconvert/resources/style.min.css
 ${PYSITELIB}/nbconvert/templates/README.md
-${PYSITELIB}/nbconvert/templates/asciidoc.tpl
-${PYSITELIB}/nbconvert/templates/html/basic.tpl
-${PYSITELIB}/nbconvert/templates/html/celltags.tpl
-${PYSITELIB}/nbconvert/templates/html/full.tpl
-${PYSITELIB}/nbconvert/templates/html/mathjax.tpl
-${PYSITELIB}/nbconvert/templates/html/slides_reveal.tpl
-${PYSITELIB}/nbconvert/templates/latex/article.tplx
-${PYSITELIB}/nbconvert/templates/latex/base.tplx
-${PYSITELIB}/nbconvert/templates/latex/document_contents.tplx
-${PYSITELIB}/nbconvert/templates/latex/report.tplx
-${PYSITELIB}/nbconvert/templates/latex/skeleton/display_priority.tplx
-${PYSITELIB}/nbconvert/templates/latex/skeleton/null.tplx
-${PYSITELIB}/nbconvert/templates/latex/style_bw_ipython.tplx
-${PYSITELIB}/nbconvert/templates/latex/style_bw_python.tplx
-${PYSITELIB}/nbconvert/templates/latex/style_ipython.tplx
-${PYSITELIB}/nbconvert/templates/latex/style_jupyter.tplx
-${PYSITELIB}/nbconvert/templates/latex/style_python.tplx
-${PYSITELIB}/nbconvert/templates/markdown.tpl
-${PYSITELIB}/nbconvert/templates/python.tpl
-${PYSITELIB}/nbconvert/templates/rst.tpl
-${PYSITELIB}/nbconvert/templates/script.tpl
 ${PYSITELIB}/nbconvert/templates/skeleton/README.md
-${PYSITELIB}/nbconvert/templates/skeleton/display_priority.tpl
-${PYSITELIB}/nbconvert/templates/skeleton/null.tpl
 ${PYSITELIB}/nbconvert/tests/__init__.py
 ${PYSITELIB}/nbconvert/tests/__init__.pyc
 ${PYSITELIB}/nbconvert/tests/__init__.pyo
@@ -352,6 +314,8 @@
 ${PYSITELIB}/nbconvert/tests/fake_exporters.py
 ${PYSITELIB}/nbconvert/tests/fake_exporters.pyc
 ${PYSITELIB}/nbconvert/tests/fake_exporters.pyo
+${PYSITELIB}/nbconvert/tests/files/Unexecuted_widget.ipynb
+${PYSITELIB}/nbconvert/tests/files/Unexecuted_widget_2.ipynb
 ${PYSITELIB}/nbconvert/tests/files/Widget_List.ipynb
 ${PYSITELIB}/nbconvert/tests/files/containerized_deployments.jpeg
 ${PYSITELIB}/nbconvert/tests/files/hello.py
@@ -362,6 +326,7 @@
 ${PYSITELIB}/nbconvert/tests/files/jupyter_nbconvert_config.pyo
 ${PYSITELIB}/nbconvert/tests/files/latex-linked-image.ipynb
 ${PYSITELIB}/nbconvert/tests/files/markdown_display_priority.ipynb
+${PYSITELIB}/nbconvert/tests/files/notebook1.html
 ${PYSITELIB}/nbconvert/tests/files/notebook1.ipynb
 ${PYSITELIB}/nbconvert/tests/files/notebook2.ipynb
 ${PYSITELIB}/nbconvert/tests/files/notebook3_with_errors.ipynb
@@ -438,3 +403,50 @@
 ${PYSITELIB}/nbconvert/writers/tests/test_stdout.py
 ${PYSITELIB}/nbconvert/writers/tests/test_stdout.pyc
 ${PYSITELIB}/nbconvert/writers/tests/test_stdout.pyo
+share/jupyter/nbconvert/templates/asciidoc/conf.json
+share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2
+share/jupyter/nbconvert/templates/base/celltags.j2
+share/jupyter/nbconvert/templates/base/display_priority.j2
+share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2
+share/jupyter/nbconvert/templates/base/mathjax.html.j2
+share/jupyter/nbconvert/templates/base/null.j2
+share/jupyter/nbconvert/templates/basic/conf.json
+share/jupyter/nbconvert/templates/basic/index.html.j2
+share/jupyter/nbconvert/templates/classic/base.html.j2
+share/jupyter/nbconvert/templates/classic/conf.json
+share/jupyter/nbconvert/templates/classic/index.html.j2
+share/jupyter/nbconvert/templates/classic/static/style.css
+share/jupyter/nbconvert/templates/compatibility/display_priority.tpl
+share/jupyter/nbconvert/templates/compatibility/full.tpl
+share/jupyter/nbconvert/templates/lab/base.html.j2
+share/jupyter/nbconvert/templates/lab/conf.json
+share/jupyter/nbconvert/templates/lab/index.html.j2
+share/jupyter/nbconvert/templates/lab/static/index.css
+share/jupyter/nbconvert/templates/lab/static/theme-dark.css
+share/jupyter/nbconvert/templates/lab/static/theme-light.css
+share/jupyter/nbconvert/templates/latex/base.tex.j2
+share/jupyter/nbconvert/templates/latex/conf.json
+share/jupyter/nbconvert/templates/latex/display_priority.j2
+share/jupyter/nbconvert/templates/latex/document_contents.tex.j2
+share/jupyter/nbconvert/templates/latex/index.tex.j2
+share/jupyter/nbconvert/templates/latex/null.j2
+share/jupyter/nbconvert/templates/latex/report.tex.j2
+share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2
+share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2
+share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2
+share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2
+share/jupyter/nbconvert/templates/latex/style_python.tex.j2
+share/jupyter/nbconvert/templates/markdown/conf.json
+share/jupyter/nbconvert/templates/markdown/index.md.j2
+share/jupyter/nbconvert/templates/python/conf.json
+share/jupyter/nbconvert/templates/python/index.py.j2
+share/jupyter/nbconvert/templates/reveal/base.html.j2
+share/jupyter/nbconvert/templates/reveal/conf.json
+share/jupyter/nbconvert/templates/reveal/index.html.j2
+share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css
+share/jupyter/nbconvert/templates/rst/conf.json
+share/jupyter/nbconvert/templates/rst/index.rst.j2
+share/jupyter/nbconvert/templates/script/conf.json
+share/jupyter/nbconvert/templates/script/script.j2
+share/jupyter/nbconvert/templates/webpdf/conf.json
+share/jupyter/nbconvert/templates/webpdf/index.pdf.j2
diff -r b3716b7330d2 -r 92f1faab7a65 www/py-nbconvert/distinfo
--- a/www/py-nbconvert/distinfo Sat Feb 05 11:26:35 2022 +0000
+++ b/www/py-nbconvert/distinfo Sat Feb 05 11:29:16 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2021/10/26 11:30:44 nia Exp $
+$NetBSD: distinfo,v 1.10 2022/02/05 11:29:16 adam Exp $
 
-BLAKE2s (nbconvert-5.6.1.tar.gz) = 02d5e4a58dfcd20e99a449420b243a7cafa94663c1afdc4afdb80e2e8859ec1a
-SHA512 (nbconvert-5.6.1.tar.gz) = 0c68adcb9f28ead9ec058fc2e02a9a1e6f65818709c99f7a006a59a7562b5f5ee74afe5287e41568c35542898dc1b43c4543d2386cc05a721b3f99d5cc789435
-Size (nbconvert-5.6.1.tar.gz) = 703233 bytes
+BLAKE2s (nbconvert-6.4.1.tar.gz) = 8ccc294b66e38e268ecb10d368354c40e1705d2ee42ef1b4c7f10c32becced8f
+SHA512 (nbconvert-6.4.1.tar.gz) = 9da691b404bb1fd052075bbc3d55adcce4fb6bcb822901c73d2d3d362555bc9794db98803563a2a61c5a1ce24d4f803c6135d0ea2a162933173d19c9c6ce4f48
+Size (nbconvert-6.4.1.tar.gz) = 900632 bytes



Home | Main Index | Thread Index | Old Index