Skip to content

Commit

Permalink
🚀 RELEASE: v0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Apr 26, 2021
1 parent cc28cff commit ceb30a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion myst_nb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.12.1"
__version__ = "0.12.2"

import os
from collections.abc import Sequence
Expand Down
8 changes: 1 addition & 7 deletions myst_nb/render_outputs.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""A Sphinx post-transform, to convert notebook outpus to AST nodes."""
import os
import sys
from abc import ABC, abstractmethod
from typing import List, Optional
from unittest import mock

import nbconvert
from docutils import nodes
from docutils.parsers.rst import directives
from importlib_metadata import entry_points
from jupyter_sphinx.ast import JupyterWidgetViewNode, strip_latex_delimiters
from jupyter_sphinx.utils import sphinx_abs_dir
from myst_parser.docutils_renderer import make_document
Expand All @@ -21,12 +21,6 @@

from .nodes import CellOutputBundleNode

if sys.version_info < (3, 10):
from importlib_metadata import entry_points
else:
from importlib.metadata import entry_points


LOGGER = logging.getLogger(__name__)

WIDGET_VIEW_MIMETYPE = "application/vnd.jupyter.widget-view+json"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ project_urls =
packages = find:
install_requires =
docutils>=0.15
importlib_metadata>=3.6; python_version < "3.10"
importlib_metadata>=3.6
ipython
ipywidgets>=7.0.0,<8
jupyter-cache~=0.4.1
Expand Down

0 comments on commit ceb30a6

Please sign in to comment.