Skip to content

Commit

Permalink
Build: upgrade commonmark to 0.9.1
Browse files Browse the repository at this point in the history
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
  • Loading branch information
humitos committed Aug 30, 2022
1 parent 1fd6a66 commit ab19d1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readthedocs/doc_builder/python_environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def install_core_requirements(self):
[
"mock==1.0.1",
"alabaster>=0.7,<0.8,!=0.7.5",
"commonmark==0.8.1",
"commonmark==0.9.1",
"recommonmark==0.5.0",
]
)
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/projects/tests/test_build_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def test_build_commands_executed(self, load_yaml_config):
"pillow",
"mock==1.0.1",
"alabaster>=0.7,<0.8,!=0.7.5",
"commonmark==0.8.1",
"commonmark==0.9.1",
"recommonmark==0.5.0",
"sphinx<2",
"sphinx-rtd-theme<0.5",
Expand Down

0 comments on commit ab19d1b

Please sign in to comment.