File tree Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 7
7
8
8
python :
9
9
install :
10
+ - requirements : docs/requirements.txt
10
11
- method : pip
11
12
path : .
12
13
extra_requirements :
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 4.0.0 - 2024-08-10
4
+
5
+ This primarily drops support for Python 3.9, adds support for Python 3.13,
6
+ and updates the parser to comply with Commonmark 0.31.2 and Markdown-It v14.1.0.
7
+
8
+ * ⬆️ Drop support for Python 3.9 in [ #360 ] ( https://github.com/executablebooks/markdown-it-py/pull/360 )
9
+ * ⬆️ Comply with Commonmark 0.31.2 in [ #362 ] ( https://github.com/executablebooks/markdown-it-py/pull/362 )
10
+ * 👌 Improve performance of "text" inline rule in [ #347 ] ( https://github.com/executablebooks/markdown-it-py/pull/347 )
11
+ * 👌 Use ` str.removesuffix ` in [ #348 ] ( https://github.com/executablebooks/markdown-it-py/pull/348 )
12
+ * 👌 limit the number of autocompleted cells in a table in [ #364 ] ( https://github.com/executablebooks/markdown-it-py/pull/364 )
13
+ * 👌 fix quadratic complexity in reference parser in [ #367 ] ( https://github.com/executablebooks/markdown-it-py/pull/367 )
14
+ * 🐛 Fix emphasis inside raw links bugs in [ #320 ] ( https://github.com/executablebooks/markdown-it-py/pull/320 )
15
+
16
+ ** Full Changelog** : < https://github.com/executablebooks/markdown-it-py/compare/v3.0.0...v4.0.0 >
17
+
3
18
## 3.0.0 - 2023-06-03
4
19
5
20
⚠️ This release contains some minor breaking changes in the internal API and improvements to the parsing strictness.
Original file line number Diff line number Diff line change
1
+ # temporary requirement until myst-parser is updated to allow markdown-it-py v4
2
+ git+https://github.com/executablebooks/MyST-Parser.git@update-markdown-parser
Original file line number Diff line number Diff line change 1
1
"""A Python port of Markdown-It"""
2
2
3
3
__all__ = ("MarkdownIt" ,)
4
- __version__ = "3 .0.0"
4
+ __version__ = "4 .0.0"
5
5
6
6
from .main import MarkdownIt
Original file line number Diff line number Diff line change 1
1
- package : markdown-it/markdown-it
2
- version : 13.0.1
3
- commit : e843acc9edad115cbf8cf85e676443f01658be08
4
- date : May 3, 2022
2
+ version : 14.1.0
3
+ commit : 0fe7ccb4b7f30236fb05f623be6924961d296d3d
4
+ date : Mar 19, 2024
5
5
notes :
6
6
- Rename variables that use python built-in names, e.g.
7
7
- ` max` -> `maximum`
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ compare = [
43
43
" markdown-it-pyrs" ,
44
44
]
45
45
linkify = [" linkify-it-py>=1,<3" ]
46
- plugins = [" mdit-py-plugins" ]
46
+ plugins = [" mdit-py-plugins>=0.5.0 " ]
47
47
rtd = [
48
- " mdit-py-plugins" ,
48
+ " mdit-py-plugins>=0.5.0 " ,
49
49
" myst-parser" ,
50
50
" pyyaml" ,
51
51
" sphinx" ,
You can’t perform that action at this time.
0 commit comments