Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
#
|
2024-02-07 20:38:17 +01:00
|
|
|
# spec file for package python-nbconvert
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
#
|
2024-01-21 12:44:56 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2021-04-01 12:20:51 +02:00
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "test"
|
|
|
|
%define psuffix -test
|
|
|
|
%bcond_without test
|
|
|
|
%else
|
|
|
|
%define psuffix %{nil}
|
|
|
|
%bcond_with test
|
|
|
|
%endif
|
2022-01-06 11:55:22 +01:00
|
|
|
%if 0%{?suse_version} > 1500
|
|
|
|
%bcond_without libalternatives
|
|
|
|
%else
|
|
|
|
%bcond_with libalternatives
|
|
|
|
%endif
|
2023-08-17 18:02:13 +02:00
|
|
|
# X.X.0 gets abbreviated by pythondistdeps
|
2024-02-07 20:38:17 +01:00
|
|
|
%define shortversion 7.16
|
2021-04-09 11:23:25 +02:00
|
|
|
Name: python-nbconvert%{psuffix}
|
2024-02-07 20:38:17 +01:00
|
|
|
Version: 7.16.0
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Conversion of Jupyter Notebooks
|
2022-09-26 02:28:09 +02:00
|
|
|
License: BSD-3-Clause AND MIT
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
URL: https://github.com/jupyter/nbconvert
|
|
|
|
Source0: https://files.pythonhosted.org/packages/source/n/nbconvert/nbconvert-%{version}.tar.gz
|
2023-08-06 16:54:04 +02:00
|
|
|
BuildRequires: %{python_module base >= 3.8}
|
2022-09-26 02:28:09 +02:00
|
|
|
BuildRequires: %{python_module hatchling >= 0.25}
|
|
|
|
BuildRequires: %{python_module pip}
|
2019-08-12 00:04:39 +02:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
BuildRequires: unzip
|
2020-03-10 09:19:16 +01:00
|
|
|
Requires: jupyter-nbconvert = %{version}
|
2022-06-05 14:26:19 +02:00
|
|
|
Requires: python-Jinja2 >= 3.0
|
|
|
|
Requires: python-MarkupSafe >= 2.0
|
2022-01-06 11:55:22 +01:00
|
|
|
Requires: python-Pygments >= 2.4.1
|
2022-03-12 21:59:43 +01:00
|
|
|
Requires: python-beautifulsoup4
|
2020-03-10 09:19:16 +01:00
|
|
|
Requires: python-defusedxml
|
2022-06-05 14:26:19 +02:00
|
|
|
Requires: python-jupyter-core >= 4.7
|
2021-02-26 22:44:08 +01:00
|
|
|
Requires: python-jupyterlab-pygments
|
2021-03-01 10:44:52 +01:00
|
|
|
Requires: python-nbclient >= 0.5
|
2023-06-20 20:28:22 +02:00
|
|
|
Requires: python-nbformat >= 5.7
|
2022-06-05 14:26:19 +02:00
|
|
|
Requires: python-packaging
|
2020-03-10 09:19:16 +01:00
|
|
|
Requires: python-pandocfilters >= 1.4.1
|
2022-06-05 14:26:19 +02:00
|
|
|
Requires: python-tinycss2
|
2023-06-20 20:28:22 +02:00
|
|
|
Requires: python-traitlets >= 5.1
|
|
|
|
Requires: (python-bleach without python-bleach = 5.0.0)
|
|
|
|
Requires: (python-mistune >= 2.0.3 with python-mistune < 4)
|
2020-03-10 09:19:16 +01:00
|
|
|
Recommends: pandoc
|
2022-06-05 14:26:19 +02:00
|
|
|
Recommends: python-tornado >= 6.1
|
2020-03-10 09:19:16 +01:00
|
|
|
Suggests: %{name}-latex
|
2022-09-26 02:28:09 +02:00
|
|
|
Suggests: python-qtwebengine-qt5 >= 5.15
|
2020-03-10 09:19:16 +01:00
|
|
|
Provides: python-jupyter_nbconvert = %{version}
|
|
|
|
Obsoletes: python-jupyter_nbconvert < %{version}
|
|
|
|
BuildArch: noarch
|
2023-02-12 18:12:35 +01:00
|
|
|
%if 0%{python_version_nodots} < 310
|
|
|
|
Requires: python-importlib-metadata >= 3.6
|
|
|
|
%endif
|
2022-02-19 21:54:22 +01:00
|
|
|
%if %{with libalternatives}
|
|
|
|
BuildRequires: alts
|
|
|
|
Requires: alts
|
|
|
|
%else
|
|
|
|
Requires(post): update-alternatives
|
2024-02-07 20:38:17 +01:00
|
|
|
Requires(postun): update-alternatives
|
2022-02-19 21:54:22 +01:00
|
|
|
%endif
|
2021-04-01 12:20:51 +02:00
|
|
|
%if %{with test}
|
2023-08-06 16:54:04 +02:00
|
|
|
BuildRequires: %{python_module flaky}
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
BuildRequires: %{python_module ipykernel}
|
2023-12-28 16:29:29 +01:00
|
|
|
BuildRequires: %{python_module ipywidgets >= 7.5}
|
2022-01-06 11:55:22 +01:00
|
|
|
BuildRequires: %{python_module nbconvert = %{version}}
|
2023-12-16 19:12:19 +01:00
|
|
|
BuildRequires: %{python_module pytest}
|
2021-04-01 12:20:51 +02:00
|
|
|
%endif
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
The jupyter nbconvert package converts notebooks to various other formats
|
|
|
|
via Jinja templates.
|
|
|
|
|
|
|
|
This package provides the python interface.
|
|
|
|
|
|
|
|
%package -n jupyter-nbconvert
|
|
|
|
Summary: Conversion of Jupyter Notebooks
|
2019-04-26 18:41:13 +02:00
|
|
|
Requires: jupyter-ipykernel
|
2019-11-12 21:48:48 +01:00
|
|
|
Requires: jupyter-jupyter-core
|
2023-08-17 18:02:13 +02:00
|
|
|
# Any flavor is okay, but suggest the primary one for automatic zypper choice -- boo#1214354
|
2023-06-20 21:07:11 +02:00
|
|
|
Requires: python3dist(nbconvert) = %{shortversion}
|
2023-08-17 18:02:13 +02:00
|
|
|
Suggests: python3-nbconvert
|
2019-05-15 18:06:38 +02:00
|
|
|
Conflicts: python3-jupyter_nbconvert < 5.5.0
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
|
|
|
%description -n jupyter-nbconvert
|
|
|
|
The jupyter nbconvert package converts notebooks to various other formats
|
|
|
|
via Jinja templates.
|
|
|
|
|
|
|
|
This package provides the jupyter components.
|
|
|
|
|
|
|
|
%package -n jupyter-nbconvert-latex
|
|
|
|
Summary: LaTeX support for nbconvert
|
|
|
|
Requires: jupyter-nbconvert = %{version}
|
|
|
|
Requires: texlive-bibtex
|
|
|
|
Requires: texlive-makeindex
|
|
|
|
Requires: tex(adjustbox.sty)
|
|
|
|
Requires: tex(eurosym.sty)
|
|
|
|
Requires: tex(ulem.sty)
|
|
|
|
|
|
|
|
%description -n jupyter-nbconvert-latex
|
|
|
|
The jupyter nbconvert package converts notebooks to various other formats
|
|
|
|
via Jinja templates.
|
|
|
|
|
|
|
|
This package pulls in the LaTeX dependencies for nbconvert.
|
|
|
|
|
|
|
|
%prep
|
2022-09-26 02:28:09 +02:00
|
|
|
%autosetup -p1 -n nbconvert-%{version}
|
|
|
|
for f in nbconvert/nbconvertapp.py nbconvert/filters/filter_links.py; do
|
|
|
|
sed -i -e '/^#!\//, 1d' $f
|
|
|
|
chmod -x $f
|
|
|
|
done
|
2023-10-09 20:21:15 +02:00
|
|
|
sed -i '/addopts/,/\]/ s/"--color=yes",//' pyproject.toml
|
2021-02-26 17:35:40 +01:00
|
|
|
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%build
|
2022-09-26 02:28:09 +02:00
|
|
|
%if ! %{with test}
|
|
|
|
%pyproject_wheel
|
|
|
|
%endif
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
|
|
|
%install
|
2021-04-01 12:20:51 +02:00
|
|
|
%if ! %{with test}
|
2022-09-26 02:28:09 +02:00
|
|
|
%pyproject_install
|
2021-12-31 17:54:01 +01:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/jupyter-nbconvert
|
2022-01-06 11:55:22 +01:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/jupyter-dejavu
|
2019-08-12 00:04:39 +02:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%fdupes %{buildroot}%{_docdir}/jupyter-nbconvert/
|
2021-04-01 12:20:51 +02:00
|
|
|
%endif
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
2021-04-01 12:20:51 +02:00
|
|
|
%if %{with test}
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%check
|
|
|
|
export LANG=en_US.UTF-8
|
2022-12-27 00:22:01 +01:00
|
|
|
export PYTHONDONTWRITEBYTECODE=1
|
2022-09-26 02:28:09 +02:00
|
|
|
# requires modules not installed: https://github.com/jupyter/nbconvert/issues/1846
|
2022-12-27 00:22:01 +01:00
|
|
|
donttest="test_convert_full_qualified_name or test_post_processor"
|
2023-10-09 20:21:15 +02:00
|
|
|
# mv the source out of PYTHONPATH
|
|
|
|
mv nbconvert nbconvert.moved
|
|
|
|
%{python_expand #
|
2022-12-27 00:22:01 +01:00
|
|
|
$python -m ipykernel.kernelspec --user
|
2023-10-09 20:21:15 +02:00
|
|
|
pytest-%{$python_bin_suffix} -v -m 'not network' -k "not ($donttest)"
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
}
|
2021-04-01 12:20:51 +02:00
|
|
|
%endif
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
2021-12-31 17:54:01 +01:00
|
|
|
%if !%{with test}
|
|
|
|
%pre
|
|
|
|
%python_libalternatives_reset_alternative jupyter-nbconvert
|
|
|
|
|
|
|
|
%post
|
2022-01-06 11:55:22 +01:00
|
|
|
%python_install_alternative jupyter-nbconvert jupyter-dejavu
|
2021-12-31 17:54:01 +01:00
|
|
|
|
|
|
|
%postun
|
|
|
|
%python_uninstall_alternative jupyter-nbconvert
|
|
|
|
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%files %{python_files}
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2022-01-06 11:55:22 +01:00
|
|
|
%{python_sitelib}/nbconvert-%{version}*-info
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
%{python_sitelib}/nbconvert/
|
2021-12-31 17:54:01 +01:00
|
|
|
%python_alternative %{_bindir}/jupyter-nbconvert
|
2022-01-06 11:55:22 +01:00
|
|
|
%python_alternative %{_bindir}/jupyter-dejavu
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
|
|
|
%files -n jupyter-nbconvert
|
|
|
|
%license LICENSE
|
2021-04-01 12:20:51 +02:00
|
|
|
%dir %{_datadir}/jupyter/
|
2021-02-26 00:27:58 +01:00
|
|
|
%dir %{_datadir}/jupyter/nbconvert
|
|
|
|
%{_datadir}/jupyter/nbconvert/templates
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
|
|
|
%files -n jupyter-nbconvert-latex
|
|
|
|
%license LICENSE
|
2021-04-01 12:20:51 +02:00
|
|
|
%endif
|
Accepting request 697873 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Rename to to match python package naming guidelines.
- Split jupyter components into own subpackage.
- Rename doc package to match jupyter package name.
- Update to 5.4.1:
- New Features
- Expose pygments styles
- Tornado 6.0 support -- Convert proxy handler from callback
to coroutine
- Add option to overwrite the highlight_code filter
- Fixing Problems
- Mathjax.tpl fix for rendering Latex in html
- Backwards compatbility for empty kernel names
- Testing, Docs, and Builds
- DOC: Add missing language specification to code-block
- Switch to %pytest
- Disable test due to use of old IPython reference files.
See https://github.com/jupyter/nbconvert/issues/898
- Use noun phrasing for summary.
- Update to 5.4.0
+ New Features
* No input flag (``--no-input``)
* Add alias ``--to ipynb`` for notebook exporter
* Add ``export_from_notebook``
* If set, use ``nb.metadata.authors`` for LaTeX author line
* Populate language_info metadata when executing
* Support for ``\mathscr``
* Allow the execute preprocessor to make use of an existing kernel
* Refactor ExecutePreprocessor
* Update widgets CDN for ipywidgets 7 w/fallback
* Add support for adding custom exporters to the "Download as" menu.
* Enable ANSI underline and inverse
* Update notebook css to 5.4.0
* Change default for slides to direct to the reveal cdn rather than locally
* Use "title" instead of "name" for metadata to match the notebook format
* Img filename metadata
* Added MathJax compatibility definitions
* Per cell exception
* Simple API for in-memory templates
* Set BIBINPUTS and BSTINPUTS environment variables when making PDF
* If ``nb.metadata.title`` is set, default to that for notebook
+ Deprecations
* Drop support for python 3.3
+ Fixing Problems
* Fix api break
* Don't remove empty cells by default
* Handle attached images in html converter
* No need to check for the channels already running
* Update ``font-awesome`` version for slides
* Properly treat JSON data
* Skip executing empty code cells
* Ppdate log.warn (deprecated) to log.warning
* Cleanup notebook.tex during PDF generation
* Windows unicode error fixed, nosetest added to setup.py
* Better content hiding; template & testing improvements
* Fix Jinja syntax in custom template example.
* Fix for an issue with empty math block
* Add parser for Multiline math for LaTeX blocks
* Use defusedxml to parse potentially untrusted XML
* Fixes for traitlets 4.1 deprecation warnings
+ Testing, Docs, and Builds
* A couple of typos
* Add python_requires metadata.
* Document ``--inplace`` command line flag.
* Fix minor typo in ``usage.rst``
* Add note about local ``reveal_url_prefix``
* Move ``onlyif_cmds_exist`` decorator to test-specific utils
* Include LICENSE file in wheels
* Added Ubuntu Linux Instructions
* Check for too recent of pandoc version
* Removing more nose remnants via dependencies.
* Remove offline statement and add some clarifications in slides docs
* Linkify PR number
* Added shebang for python
* Upgrade mistune dependency
* add feature to improve docs by having links to prs
* Update notebook CSS from version 4.3.0 to 5.1.0
* Explicitly exclude or include all files in Manifest.
- Use documentation provided by upstream.
- Clean up SPEC file.
- Update url
- Update to 5.3.1
* MANIFEST.in updated to include ``LICENSE`` and ``scripts/`` when creating sdist. #666
- Update to 5.3
+ Major features
* Tag Based Element Filtering
+ new features
* configurable ``browser`` in ServePostProcessor #618
* ``--clear-output`` command line flag to clear output in-place #619
* remove elements based on tags with ``TagRemovePreprocessor``. #640, #643
* CellExecutionError can now be imported from ``nbconvert.preprocessors`` #656
* slides now can enable scrolling and custom transitions #600
+ Documentation
* Release instructions for nbviewer-deploy
* improved instructions for handling errors using the ``ExecutePreprocessor`` #656
+ Testing
* better height/width metadata testing for images in rst & html #601 #602
* normalise base64 output data to avoid false positives #650
* normalise ipython traceback messages to handle old and new style #631
+ Bugfixes
* mathjax obeys ``\\(\\)`` & ``\\[\\]`` (both nbconvert & pandoc) #609 #617
* specify default templates using extensions #639
* fix pandoc version number #638
* require recent mistune version #630
* catch errors from IPython ``execute_reply`` and ``error`` messages #642
+ Other
* nose completely removed & dependency dropped #595 #660
* mathjax processing in mistune now only uses inline grammar #611
* removeRegex now enabled by default on all TemplateExporters, does not remove cells with outputs #616
* validate notebook after applying each preprocessor (allowing additional attributes) #645
* changed COPYING.md to LICENSE for more standard licensing that GitHub knows how to read #654
- Update to 5.2
+ Major features
* Global Content Filtering
* Execute notebooks from a function
* Remove cells based on regex pattern
* Script exporter entrypoints for nonpython scripts
+ New features
* configurable ExecutePreprocessor.startup_timeout configurable #583
* RemoveCell preprocessor based on cell content (defaults to empty cell) #575
* function for executing notebooks: `executenb` #573
* global filtering to remove inputs, outputs, markdown cells (&c.), this works on all templates #554
* script exporter entrypoint #531
* configurable anchor link text (previously ¶) `HTMLExporter.anchor_link_text` #522
* configurable values for slides exporter #542 #558
+ Bugfixes
* we now respect width and height metadata on jpeg and png mimetype outputs #588
* now we respect the `resolve_references` filter in `report.tplx` #577
* output metadata now is removed by ClearOutputPreprocessor #569
* display id respected in execute preproessor #563
* dynamic defaults for optional jupyter_client import #559
* don't self-close non-void HTML tags #548
* upgrade jupyter_client dependency to 4.2 #539
* LaTeX output through md→LaTeX conversion shouldn't be touched #535
* now we escape `<` inside math formulas when converting to html #514
+ Other
* improved releases (how-to documentation, version-number generation and checking) #593
* doc improvements #593 #580 #565 #554
* language information from cell magics (for highlighting) is now included in more formats #586
* mathjax upgrades and cdn fixes #584 #567
* better CI #571 #540
* better traceback behaviour when execution errs #521
* deprecated nose test features removed #519
- switch texlive Recommends to Suggests - let's not pull the whole
texlive for this particular package
- Implement single-spec version.
- Update to 5.1.1
* fix version numbering because of incomplete previous version number
- Update to 5.1
* improved CSS (specifically tables, in line with notebook) #498
* improve in-memory templates handling #491
* test improvements #516 #509 #505
* new configuration option: IOPub timeout #513
* doc improvements #489 #500 #493 #506
* newly customizable: output prompt #500
* more python2/3 compatibile unicode handling #502
- Update to 5.0
* Use :command:`xelatex` by default for latex export, improving unicode and font support.
* Use entrypoints internally to access Exporters, allowing for packages to declare custom exporters more easily.
* New ASCIIDoc Exporter.
* New preprocessor for sanitised html output.
* New general ``convert_pandoc`` filter to reduce the need to hard-code lists of filters in templates.
* Use pytest, nose dependency to be removed.
* Refactored Exporter code to avoid ambiguity and cyclic dependencies.
* Update to traitlets 4.2 API.
* Fixes for Unicode errors when showing execution errors on Python 2.
* Default math font matches default Palatino body text font.
* General documentation improvements. For example, testing, installation, custom exporters.
* Improved link handling for LaTeX output
* Refactored the automatic id generation.
* New kernel_manager_class configuration option for allowing systems to be set up to resolve kernels in different ways.
* Kernel errors now will be logged for debugging purposes when executing notebooks.
- Update to 4.3
* added live widget rendering for html output, nbviewer by extension
- Update to 4.2
* :ref:`Custom Exporters <external_exporters>` can be provided by external packages,
and registered with nbconvert via setuptools entrypoints.
* allow nbconvert reading from stdin with ``--stdin`` option (write into
``notebook`` basename)
* Various ANSI-escape fixes and improvements
* Various LaTeX/PDF export fixes
* Various fixes and improvements for executing notebooks with ``--execute``.
- Create doc subpackage
- Update to 4.1.0
* setuptools fixes for entrypoints on Windows
* various fixes for exporters, including slides, latex, and PDF
* fixes for exceptions met during execution
* include markdown outputs in markdown/html exports
- Build documentation
- Initial version
OBS-URL: https://build.opensuse.org/request/show/697873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbconvert?expand=0&rev=1
2019-04-25 17:50:46 +02:00
|
|
|
|
|
|
|
%changelog
|