Skip to content

Commit 0afdbe4

Browse files
authored
Build: upgrade commonmark to 0.9.1 (#9563)
Currently, we are installing an older version of `commonmark` that has some problems with newer versions of Python. Upgrading it to 0.9.1 seems to solve this problem. See #9562 for a detailed explanation of the problem
1 parent 91b670d commit 0afdbe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/doc_builder/python_environments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def install_core_requirements(self):
182182
[
183183
"mock==1.0.1",
184184
"alabaster>=0.7,<0.8,!=0.7.5",
185-
"commonmark==0.8.1",
185+
"commonmark==0.9.1",
186186
"recommonmark==0.5.0",
187187
]
188188
)

readthedocs/projects/tests/test_build_tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def test_build_commands_executed(self, load_yaml_config):
582582
"pillow",
583583
"mock==1.0.1",
584584
"alabaster>=0.7,<0.8,!=0.7.5",
585-
"commonmark==0.8.1",
585+
"commonmark==0.9.1",
586586
"recommonmark==0.5.0",
587587
"sphinx<2",
588588
"sphinx-rtd-theme<0.5",

0 commit comments

Comments
 (0)