Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions marimo/_cli/convert/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
# Native to python
from xml.etree.ElementTree import Element, SubElement

import yaml

# Markdown is a dependency of marimo, as such we utilize it as much as possible
# to parse markdown.
from markdown import Markdown
Expand All @@ -30,6 +28,7 @@
from marimo._ast.compiler import compile_cell
from marimo._cli.convert.utils import markdown_to_marimo

import yaml
# CSafeLoader is faster than SafeLoader.
try:
from yaml import CSafeLoader as SafeLoader
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ dependencies = [
"pygments>=2.13,<3",
# for reading, writing configs
"tomlkit>= 0.12.0",
# for managing frontmatter headers in markdown
"pyyaml>=6.0",
# web server
# - 0.22.0 introduced timeout-graceful-shutdown, which we use
"uvicorn >= 0.22.0",
Expand Down