Skip to content
Open
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
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ dependencies = [
# compile markdown to html
"markdown>=3.6,<4",
# add features to markdown
# Pinned to specific version for introduction of codeblock handling.
"pymdown-extensions>=10.21.2,<11",
# - 10.11.2 introduced the codeblock handling we rely on
# - 10.21.2 stopped passing `filename=None` to pygments (broken on
# pygments>=2.20)
"pymdown-extensions>=10.21.2,<12",
# syntax highlighting of code in markdown
"pygments>=2.19,<3",
# for reading, writing configs
Expand Down
2 changes: 1 addition & 1 deletion tests/snapshots/dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ narwhals>=2.0.0
packaging
psutil>=5.0; sys_platform != 'emscripten' and sys_platform != 'android'
pygments>=2.19,<3
pymdown-extensions>=10.21.2,<11
pymdown-extensions>=10.21.2,<12
python-multipart>=0.0.18
pyyaml>=6.0.1
pyzmq>=27.1.0; python_version < '3.15' and sys_platform != 'emscripten'
Expand Down
Loading