Skip to content

Commit 0dff43f

Browse files
committed
updates
1 parent ca22fce commit 0dff43f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repos:
4848
- id: mypy
4949
args: [--config-file=setup.cfg]
5050
additional_dependencies:
51-
- myst-parser==0.14.0a2
51+
- myst-parser~=0.14.0
5252
files: >
5353
(?x)^(
5454
myst_nb/parser.py|

docs/examples/custom-formats.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ nb_custom_formats = {
7171
```
7272

7373
:::{important}
74-
For full compatibility with `myst-nb`, `jupytext>=1.8.0` should be used.
74+
For full compatibility with `myst-nb`, `jupytext>=1.11.2` should be used.
7575
:::
7676

7777
For example:

myst_nb/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
class NotebookParser(MystParser):
2828
"""Docutils parser for Markedly Structured Text (MyST) and Jupyter Notebooks."""
2929

30-
supported = ("myst-nb",) # type: ignore[assignment]
30+
supported = ("myst-nb",)
3131
translate_section_name = None
3232

3333
config_section = "myst-nb parser"

0 commit comments

Comments
 (0)