Skip to content

Releases: QuantEcon/sphinxcontrib-jupyter

Release of 0.5.10

18 Jun 03:30
Compare
Choose a tag to compare

This is a minor release to make writing templates that support next and prev metadata easier to write without having multiple object types. It relies on metadata or no metadata.

  • FIX: Simply interface with template layer for next and prev metadata in notebooks #333 (mmcky)

Release of 0.5.9

16 Jun 11:11
Compare
Choose a tag to compare

Minor update to 0.5.8 that fixes an edge case where titles are composed of text and other element types such as index. This parses the children list and extracts text items only.

Release of 0.5.8

16 Jun 01:04
Compare
Choose a tag to compare

This release includes a minor update to next and prev metadata support (introduced in 0.5.7) to enable a filter in conf.py for documents that are not to be written to the nb metadata.

Usage:

jupyter_nextprev_ignore = ["404, "search"]
  • ENH: Add support for exclusion of Next and Previous metadata in conf.py #330 (mmcky)

Release of 0.5.7

10 Jun 04:13
Compare
Choose a tag to compare

This release includes metadata for next and previous documents

  • ENH: add next and prev document metadata to notebook meta #329 (mmcky)

The metadata is provided at the notebook level in nb.metadata and is in the following format:

"next_doc": {
   "link": str(docname),
   "title": str(title)
  },

with metadata keys: next_doc and prev_doc.

If a next/previous document does not exist there is no metadata included for that item.

Release of 0.5.6

10 May 10:55
Compare
Choose a tag to compare

This minor release includes:

  • [ENH] Remove early version requirements for dask #328 (mmcky)
  • [TEST] add sphinx=3.0.3 testing #327 (mmcky)

Release of 0.5.5

06 May 05:31
392fee1
Compare
Choose a tag to compare

This release includes the following bug fixes and improvements:

Note: Python Version 2.7 is no longer tested as of this release. Python=3.7 and 3.8 will be tested.

Release of Version 0.5.4

14 Feb 04:38
Compare
Choose a tag to compare

This is a minor release to fix the version of dask as the extension is not compatible with the current version of dask due to a change in internal data structures. Issue #313

Release of Version 0.5.2

18 Nov 05:35
Compare
Choose a tag to compare

This release includes support for building book style PDF files for projects as a single PDF file.

New Features:

Release of Version 0.5.1

04 Nov 22:11
Compare
Choose a tag to compare

Update to fix an issue with copying static assets when using make jupyter.

Bug Fixes:

  • FIX: fix bulk copy of static for all builder targets #298 (mmcky)

Docs:

  • Add improved Description for PyPI #293 (mmcky)

Release of Version 0.5.0

04 Oct 05:55
Compare
Choose a tag to compare

This release adds the ability to produce pdf documents (via jupyter ipynb) and adds timestamp metadata to notebooks. To use the pdf feature the theme requires a latex.tpl support template. See documentation for further details.

Usage:

make juptyerpdf

New Features:

Tests:

  • ENH: Update to tests, update relative links, and delete files that are no longer used #276 (sglyon)

Docs:

  • DOCS: Document pdf pipeline and translator options #219